2023-12-13|閱讀時間 ‧ 約 1 分鐘

[Flutter]AlertDialog

用來顯示訊息提示用戶。


屬性

  • title:訊息對話框視窗標題
  • content:訊息對話框視窗內文
  • actions:訊息對話框視窗,按鈕觸發事件


AlertDialog(
title: Text('Alert'),
content: const Text('Alert'),
actions: <Widget>[
ElevatedButton(
child: Text('OK'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
分享至
成為作者繼續創作的動力吧!
© 2024 vocus All rights reserved.