Flushbar(
message: "Lorem Ipsum is simply dummy text of the printing and typesetting industry",
icon: Icon(
Icons.info_outline,
size: 28.0,
color: Colors.blue[300],
),
duration: Duration(seconds: 3),
leftBarIndicatorColor: Colors.blue[300],
)..show(context);
5条答案
按热度按时间7rtdyuoh1#
可以使用https://pub.dartlang.org/packages/flushbar
pu3pd22g2#
您可以使用设备的高度设置边距以实现此目的:
whlutmcx3#
使用此软件包https://pub.dev/packages/another_flushbar
3z6pesqy4#
使用
Column
Package 小部件,并将mainAxisAlignment
设置为MainAxisAlignment.start
。此外,将SnackBar的颜色设置为透明。e4yzc0pl5#
下面是一个基于the answer from fatih的示例