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