Flutter:用警报对话框替换底部对话框
Flutter: Replace bottom Dialog with alert dialog
当我点击底部对话框的一个选项时,我希望底部对话框被警告对话框替换,这是我的 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,
),
),
));
找到了!我忘了删除一行代码,现在完美运行了,
我也替换了
Navigator.of(context).pushReplacement(.....
和
showDialog(....
当我点击底部对话框的一个选项时,我希望底部对话框被警告对话框替换,这是我的 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,
),
),
));
找到了!我忘了删除一行代码,现在完美运行了,
我也替换了
Navigator.of(context).pushReplacement(.....
和
showDialog(....