showBottomSheetTransparent function
dynamic
showBottomSheetTransparent(
- dynamic child, {
- dynamic isScrollControlled = true,
- dynamic enableDrag = true,
- dynamic isDismissible = true,
Implementation
showBottomSheetTransparent(child,
{isScrollControlled = true,
enableDrag = true,
isDismissible = true}) async {
return await Get.bottomSheet(
child,
isDismissible: isDismissible,
backgroundColor: Colors.transparent,
barrierColor: Colors.transparent,
isScrollControlled: isScrollControlled,
enableDrag: enableDrag,
);
}