showPlexBottomSheet function
dynamic
showPlexBottomSheet({})
Implementation
showPlexBottomSheet({
required BuildContext context,
required String title,
required Widget Function() builder,
Color? backgroundColor,
bool isScrollControlled = true,
bool isDismissible = true,
bool useSafeArea = true,
bool showDragHandle = true,
bool enableDrag = true,
}) {
showModalBottomSheet(
enableDrag: enableDrag,
showDragHandle: showDragHandle,
useSafeArea: useSafeArea,
isDismissible: isDismissible,
isScrollControlled: isScrollControlled,
backgroundColor: backgroundColor,
context: context,
builder: (BuildContext context) {
return builder.call();
},
);
}