Close modal bottom sheet programmatically in flutter

后端 未结 4 2030
迷失自我
迷失自我 2020-12-25 09:23

I am displaying a BottomSheet via showModalBottomSheet() and inside several widgets with a GestureDetector. I would like to see the BottomSheet clos

4条回答
  •  醉梦人生
    2020-12-25 10:14

    The fix in our code was to wrap our bottom sheet widget like this. The buttons in the bottom sheet still worked:

    GestureDetector(
          behavior: HitTestBehavior.opaque,
          onTap: () =>  Navigator.pop(context),
          child: 
    )
    

提交回复
热议问题