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
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(), )