How to fix the Snackbar height and position?

后端 未结 7 1214
甜味超标
甜味超标 2021-02-08 03:16

On Android Support Library 24.1.1, the Snackbar was working fine:

Then starting on Android Support Library 24.2.0 onwards, the

7条回答
  •  旧时难觅i
    2021-02-08 03:42

    If all you care about is the height, not the position, then prepare to have your mind blown! :D

    Set your snackbar content to:

    Column(
            mainAxisSize: MainAxisSize.min,
            children: [
              Text(
                'Your SnackBar message',
              ),
              SizedBox(
                height: 70, // Your desired height
              )
            ],
          ))
    

提交回复
热议问题