用來顯示訊息提示用戶。
屬性
- title:訊息對話框視窗標題
- content:訊息對話框視窗內文
- actions:訊息對話框視窗,按鈕觸發事件
AlertDialog(
title: Text('Alert'),
content: const Text('Alert'),
actions: <Widget>[
ElevatedButton(
child: Text('OK'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
用來顯示訊息提示用戶。
AlertDialog(
title: Text('Alert'),
content: const Text('Alert'),
actions: <Widget>[
ElevatedButton(
child: Text('OK'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);