BottomSheetBuilder typedef

BottomSheetBuilder = Widget Function(BuildContext context, Widget child)

Signature for a function that builds a bottom sheet container using the given context and embedded child widget.

Can be used to apply consistent styling, such as background color, shape, padding, or other layout-related customizations.

Implementation

typedef BottomSheetBuilder = Widget Function(
  BuildContext context,
  Widget child,
);