NavigationButton constructor

const NavigationButton({
  1. VoidCallback? onPressed,
  2. Widget? label,
  3. double? spacing,
  4. AbstractButtonStyle? style,
  5. AlignmentGeometry? alignment,
  6. bool? enabled,
  7. NavigationOverflow overflow = NavigationOverflow.marquee,
  8. AlignmentGeometry? marginAlignment,
  9. required Widget child,
})

Implementation

const NavigationButton({
  this.onPressed,
  super.label,
  super.spacing,
  super.style,
  super.alignment,
  super.enabled,
  super.overflow,
  super.marginAlignment,
  required super.child,
});