modal_bottom_sheet icon indicating copy to clipboard operation
modal_bottom_sheet copied to clipboard

How to dismiss the bottom sheet with in page child transition

Open lucasjinreal opened this issue 4 years ago • 0 comments



 return Navigator(
      onGenerateRoute: (_) => MaterialPageRoute(builder: (context) {
        return CupertinoPageScaffold(
          navigationBar: appBar(context),

image image

I have a view like this, which using demo code, push child page with inside CupertinoScaffold.

As you can see, I can not call Navigator.pop inside CuperitnoPageScaffold to dismiss the whole bottom sheet page. since it just pop up CupertinoPageScaffold itself, but not the root Navigator.

What should I do/

lucasjinreal avatar Apr 23 '21 15:04 lucasjinreal