bottomSheetTemplate property
Widget
get
bottomSheetTemplate
Returns a default modal configuration
Useful as a starting point for creating custom modals
Implementation
static Widget get bottomSheetTemplate => Center(
child: Padding(
padding: const EdgeInsets.all(15.0),
child: const Text('Default Sheet'),
),
);