NavigationLabel constructor

const NavigationLabel({
  1. Key? key,
  2. AlignmentGeometry alignment = AlignmentDirectional.centerStart,
  3. bool floating = false,
  4. bool pinned = false,
  5. NavigationOverflow overflow = NavigationOverflow.marquee,
  6. EdgeInsetsGeometry? padding,
  7. required Widget child,
})

Implementation

const NavigationLabel({
  super.key,
  this.alignment = AlignmentDirectional.centerStart,
  this.floating = false,
  this.pinned = false,
  this.overflow = NavigationOverflow.marquee,
  this.padding,
  required this.child,
});