NavigationButton constructor

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

Implementation

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