Flutter:- show BottomSheet transparency

后端 未结 5 1775
傲寒
傲寒 2021-02-14 12:10

I want to open a showBottomSheet. here is my code which working fine, I am able to open ButtomSheet, but it\'s not giving transparency effect. that I could see behind of this sh

5条回答
  •  鱼传尺愫
    2021-02-14 12:31

    Try this way to archive Transparent theme of Fullscreen Bottom Sheet:

    MaterialApp(
       theme: ThemeData(canvasColor: Colors.transparent)
    ),
    

    And,

    showModalBottomSheet(
        isScrollControlled: true,
        context: context,
        barrierColor: Colors.white.withOpacity(0.05),
        builder: (context) => CustomWidget(),
    )
    

提交回复
热议问题