Answers for "simple alert dialog flutter"

2

alertdialog flutter

showAlertDialog(BuildContext context) {

  // set up the button
  Widget okButton = FlatButton(
    child: Text("OK"),
    onPressed: () { },
  );

  // set up the AlertDialog
  AlertDialog alert = AlertDialog(
    title: Text("My title"),
    content: Text("This is my message."),
    actions: [
      okButton,
    ],
  );

  // show the dialog
  showDialog(
    context: context,
    builder: (BuildContext context) {
      return alert;
    },
  );
}
Posted by: Guest on September-03-2020
-1

flutter display alert dialog after server error

Provider.of<NewsProvider>(context, listen: false)
.fetchAndSetNewsList()
.catchError((error) => showDialog(context: context, builder: (context) {
   return new SimpleDialog(
       children: <Widget>[
            new Center(child: new Container(child: new Text('foo')))
       ]);
}))
Posted by: Guest on April-28-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language