showBottomSheet static method
void
showBottomSheet({})
Implementation
static void showBottomSheet({required String title,
required List<Widget> content,
String? subTitle,
String? fontFamily,
double? titleFontSize,
double? minHeight,
Widget? endWidget,
Color? bottomSheetColor,
EdgeInsets? padding}) {
Get.bottomSheet(
Wrap(
children: [
SafeArea(
child: GNCustomBottomSheet(
title: title,
content: content,
subTitle: subTitle,
fontFamily: fontFamily,
minHeight: minHeight,
titleFontSize: titleFontSize,
padding: padding,
endWidget: endWidget,
bottomSheetColor:bottomSheetColor ,
),
),
],
),
isScrollControlled: true,
);
}