【发布时间】:2020-07-05 21:30:08
【问题描述】:
当我点击底部对话框的一个选项时,我希望底部对话框被一个警告对话框替换,这是我的 onTap 的功能代码:
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (_) => AlertDialog(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(15.0),
),
backgroundColor: AppTheme.backgroundColor,
title: Text('Select reaction'),
content: Container(
height: 100,
width: 100,
),
),
));
【问题讨论】:
标签: ios flutter dart flutter-dialog flutter-design