NesBottomSheetTheme constructor

const NesBottomSheetTheme({
  1. required Color backgroundColor,
  2. required Color borderColor,
  3. EdgeInsets padding = const EdgeInsets.all(32),
  4. int? pixelSize,
  5. NesBottomSheetPainterBuilder painter = NesBottomSheetRoundedBorderPainter.new,
})

Class with information regarding containers inside NesUI.

A NesContainerTheme is an optional custom theme for NesUI containers, by default, flutterNesTheme will create a NesContainerTheme where:

Implementation

const NesBottomSheetTheme({
  required this.backgroundColor,
  required this.borderColor,
  this.padding = const EdgeInsets.all(32),
  this.pixelSize,
  this.painter = NesBottomSheetRoundedBorderPainter.new,
});