FSidebarStyle constructor
const
FSidebarStyle({
- required BoxDecoration decoration,
- required FSidebarGroupStyle groupStyle,
- BoxConstraints constraints = const BoxConstraints.tightFor(width: 250),
- ImageFilter? backgroundFilter,
- EdgeInsetsGeometry headerPadding = const EdgeInsets.fromLTRB(0, 16, 0, 0),
- EdgeInsetsGeometry contentPadding = const EdgeInsets.symmetric(vertical: 12),
Creates a FSidebarStyle.
Implementation
const FSidebarStyle({
required this.decoration,
required this.groupStyle,
this.constraints = const BoxConstraints.tightFor(width: 250),
this.backgroundFilter,
this.headerPadding = const EdgeInsets.fromLTRB(0, 16, 0, 0),
this.contentPadding = const EdgeInsets.symmetric(vertical: 12),
this.footerPadding = const EdgeInsets.fromLTRB(0, 0, 0, 16),
});