showBottomSheet static method

void showBottomSheet(
  1. BuildContext context,
  2. Widget builder(
    1. BuildContext
    )
)

Helper method for displaying the bottom sheet

Implementation

static void showBottomSheet(
  BuildContext context,
  Widget Function(BuildContext) builder,
) {
  HoverBottomSheetHelper.showBottomDrawer(context, builder);
}