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?" ), act...