Show bottomSheet beneath bottomNavigationBar

后端 未结 3 730
谎友^
谎友^ 2021-02-15 19:43

In our app we\'re using a bottomSheet along with a bottomNavigationBar.

The bottomSheet appears above the bottomNavigationBar, is there a way to make it appear underneat

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-15 20:08

    add : useRootNavigator: true,

    showModalBottomSheet(
          context: context,
          useRootNavigator: true,
          builder: (context) {},
        );
    

提交回复
热议问题