显示小吃店颤动后导航器弹出
Posted
技术标签:
【中文标题】显示小吃店颤动后导航器弹出【英文标题】:Navigator pop after display snackbar flutter 【发布时间】:2020-10-15 23:48:30 【问题描述】:我想在 SnackBar 终止后弹出我的屏幕。
怎么办?
Scaffold.of(context).showSnackBar(
SnackBar(
backgroundColor: Colors.pink,
content: Text('Successfull !'),
duration: Duration(seconds: 5),
),
);
Navigator.of(context).pop();
【问题讨论】:
【参考方案1】:使用closed
then
SnackBarClosedReason
Scaffold.of(context).showSnackBar(
SnackBar(
backgroundColor: Colors.pink,
content: Text('Successfull !'),
duration: Duration(seconds: 5),
),
).closed.then((SnackBarClosedReason reason)
Navigator.of(context).pop();
);
【讨论】:
以上是关于显示小吃店颤动后导航器弹出的主要内容,如果未能解决你的问题,请参考以下文章