Answers for "alertdialog not be update in 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 how to setstate over alertdialog

showDialog(
  context: context,
  builder: (context) {
    String contentText = "Content of Dialog";
    return StatefulBuilder(
      builder: (context, setState) {
        return AlertDialog(blah blah blah....)})})
Posted by: Guest on March-22-2021

Code answers related to "alertdialog not be update in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language