当我单击底部对话框的一个选项时,我希望底部对话框被一个警报对话框替换,这是我的 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,
),
),
));