iOS风格的警报对话框。
参数详解
| 属性 | 说明 |
| title | 标题 |
| content | 内容 |
| actions | 显示在对话框底部的Widget集合 |
| scrollController | 一个滚动控制器,可用于控制对话框中内容的滚动 |
| actionScrollController | 一个滚动控制器,可用于控制对话框中动作的滚动 |
代码示例
return CupertinoAlertDialog(
title: Text('我是标题'),
content:Text('我是content'),
actions:<Widget>[
CupertinoDialogAction(
child: Text('YES'),
onPressed: (){
print('yes...');
Navigator.of(context).pop();
},
),
CupertinoDialogAction(
child: Text('NO'),
onPressed: (){
print('no...');
Navigator.of(context).pop();
},
),
],
);
效果图

3633

被折叠的 条评论
为什么被折叠?



