2021年12月15日 星期三

Flutter ShowAlert 對話視窗

 


Future<void> showAlert(BuildContext context, String title, String content) {
/*
Sample:
onPressed: () {
showAlert(context, "Title", "Content");
},
*/
return showDialog<void>(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text(title),
content: Text(content),
actions: <Widget>[
FlatButton(
child: Text('確定'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
},
);
}


沒有留言:

張貼留言