📜  服务器错误后颤动显示警报对话框 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:28.494000             🧑  作者: Mango

代码示例1
Provider.of(context, listen: false)
.fetchAndSetNewsList()
.catchError((error) => showDialog(context: context, builder: (context) {
   return new SimpleDialog(
       children: [
            new Center(child: new Container(child: new Text('foo')))
       ]);
}))