bottomSheetTheme property

BottomSheetThemeData get bottomSheetTheme

Implementation

BottomSheetThemeData get bottomSheetTheme => BottomSheetThemeData(
  backgroundColor: colors.surface,
  elevation: sizes.elevationMd,
  shape: RoundedRectangleBorder(
    side: BorderSide.none,
    borderRadius: BorderRadius.only(
      topLeft: Radius.circular(sizes.radiusLg),
      topRight: Radius.circular(sizes.radiusLg),
      bottomLeft: Radius.zero,
      bottomRight: Radius.zero,
    )
  )
);