MaterialNavigationBarData constructor

MaterialNavigationBarData({
  1. Key? widgetKey,
  2. List<NavigationDestination>? items,
  3. double? height,
  4. Duration? animationDuration,
  5. Color? backgroundColor,
  6. double? elevation,
  7. Color? indicatorColor,
  8. ShapeBorder? indicatorShape,
  9. NavigationDestinationLabelBehavior? labelBehavior,
  10. ValueChanged<int>? onDestinationSelected,
  11. int? selectedIndex,
  12. Color? shadowColor,
  13. Color? surfaceTintColor,
})

Implementation

MaterialNavigationBarData({
  this.widgetKey,
  this.items,
  this.height,
  this.animationDuration,
  this.backgroundColor,
  this.elevation,
  this.indicatorColor,
  this.indicatorShape,
  this.labelBehavior,
  this.onDestinationSelected,
  this.selectedIndex,
  this.shadowColor,
  this.surfaceTintColor,
});