NavigationBarThemeData constructor

const NavigationBarThemeData(
  1. {double? height,
  2. Color? backgroundColor,
  3. double? elevation,
  4. Color? shadowColor,
  5. Color? surfaceTintColor,
  6. Color? indicatorColor,
  7. ShapeBorder? indicatorShape,
  8. MaterialStateProperty<TextStyle?>? labelTextStyle,
  9. MaterialStateProperty<IconThemeData?>? iconTheme,
  10. NavigationDestinationLabelBehavior? labelBehavior,
  11. MaterialStateProperty<Color?>? overlayColor}
)

Creates a theme that can be used for ThemeData.navigationBarTheme and NavigationBarTheme.

Implementation

const NavigationBarThemeData({
  this.height,
  this.backgroundColor,
  this.elevation,
  this.shadowColor,
  this.surfaceTintColor,
  this.indicatorColor,
  this.indicatorShape,
  this.labelTextStyle,
  this.iconTheme,
  this.labelBehavior,
  this.overlayColor,
});