Contekan Flutter Confirmation Dialog

Berikut merupakan contekan source code untuk menampilkan dialog konfirmasi.

Bisa di copy dan paste ke dalam method atau langsung kedalam onPress/onTap button.



                // set up the buttons
Widget cancelButton = FlatButton(
child: Text("Batal"),
onPressed: () {
Navigator.pop(context);
},
);
Widget continueButton = FlatButton(
child: Text("Keluar"),
onPressed: () async {
// set up onpress buttons
},
);
// set up the AlertDialog
AlertDialog alert = AlertDialog(
title: Center(
child: Icon(Icons.logout),
),
content: Text("Anda akan Keluar Aplikasi?"),
actions: [
cancelButton,
continueButton,
],
);
// show the dialog
showDialog(
context: context,
builder: (BuildContext context) {
return alert;
},
);

Komentar

Postingan populer dari blog ini

Contekan reset password mysql di ubuntu

Contekan datatable untuk mengatasi pagination reset ketika reload