Answers for "flutter cupertinoalertdialog"

8

flutter alertdialog

AlertDialog(
          title: const Text('AlertDialog Title'),
          content: const Text('this is a demo alert diolog'),
          actions: <Widget>[
            TextButton(
              child: const Text('Approve'),
              onPressed: () { 
              	Navigator.of(context).pop();
              },
            ),
          ],
        );
Posted by: Guest on August-22-2021
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
0

showcupertinoalertdialog code flutter

showCupertinoDialog(
                                  context: context,
                                  builder: (BuildContext context) =>
                                      CupertinoAlertDialog(
                                        content: Text(
                                            'Hiiii You are Welcome'),
                                        actions: <Widget>[
                                          CupertinoButton(
                                              child: Text('Okay'),
                                              onPressed: () {
                                                Navigator.pop(context);
                                              })
                                        ],
                                      ));
Posted by: Guest on February-01-2022

Code answers related to "flutter cupertinoalertdialog"

Code answers related to "Dart"

Browse Popular Code Answers by Language