NavigationSidebar constructor

const NavigationSidebar({
  1. Key? key,
  2. Color? backgroundColor,
  3. double? spacing,
  4. NavigationLabelType labelType = NavigationLabelType.expanded,
  5. EdgeInsetsGeometry? padding,
  6. BoxConstraints? constraints,
  7. int? index,
  8. ValueChanged<int>? onSelected,
  9. double? surfaceOpacity,
  10. double? surfaceBlur,
  11. required List<NavigationBarItem> children,
})

Implementation

const NavigationSidebar({
  super.key,
  this.backgroundColor,
  this.spacing,
  this.labelType = NavigationLabelType.expanded,
  this.padding,
  this.constraints,
  this.index,
  this.onSelected,
  this.surfaceOpacity,
  this.surfaceBlur,
  required this.children,
});