NavigationItem constructor

const NavigationItem({
  1. AbstractButtonStyle? selectedStyle,
  2. bool? selected,
  3. ValueChanged<bool>? onChanged,
  4. Widget? label,
  5. double? spacing,
  6. AbstractButtonStyle? style,
  7. AlignmentGeometry? alignment,
  8. int? index,
  9. bool? enabled,
  10. NavigationOverflow overflow = NavigationOverflow.marquee,
  11. AlignmentGeometry? marginAlignment,
  12. required Widget child,
})

Implementation

const NavigationItem({
  this.selectedStyle,
  this.selected,
  this.onChanged,
  super.label,
  super.spacing,
  super.style,
  super.alignment,
  this.index,
  super.enabled,
  super.overflow,
  super.marginAlignment,
  required super.child,
});