【问题标题】:How to create Connection Snackbar with toast like Skype on Flutter?如何在 Flutter 上创建像 Skype 这样的 Toast 的 Connection Snackbar?
【发布时间】:2019-03-08 05:02:30
【问题描述】:

我使用此代码检查连接,现在我使用 showDialog。如何用吐司创建像 Skype 连接的小吃店? 像这样,https://imgur.com/a/jOlhe1M

try{
final result = await InternetAddress.lookup('google.com');
if(result.isNotEmpty && result[0].rawAddress.isNotEmpty){
 showDialog(...)
}else{
 showDialog(...)
}

【问题讨论】:

    标签: dart flutter


    【解决方案1】:

    您可以从flutter toast 包中受益,这将使您能够创建connecting.. toast。至于SnackBar,您可以使用Scaffold.of(context).showSnackBar() 调用它。

    我从 Flutter toast 包示例中添加了这张图片

    【讨论】:

      猜你喜欢
      • 2021-03-23
      • 2018-02-07
      • 1970-01-01
      • 2022-12-11
      • 2020-02-29
      • 2019-11-07
      • 2021-10-16
      • 2015-04-07
      • 1970-01-01
      相关资源
      最近更新 更多