0

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

1 回答 1

0

找到了!我忘了删除一行代码,现在完美运行,

同样,我替换

Navigator.of(context).pushReplacement(.....

showDialog(....
于 2020-07-05T21:34:46.880 回答