NavigationDrawerThemeData constructor

const NavigationDrawerThemeData(
  1. {double? tileHeight,
  2. Color? backgroundColor,
  3. double? elevation,
  4. Color? shadowColor,
  5. Color? surfaceTintColor,
  6. Color? indicatorColor,
  7. ShapeBorder? indicatorShape,
  8. Size? indicatorSize,
  9. MaterialStateProperty<TextStyle?>? labelTextStyle,
  10. MaterialStateProperty<IconThemeData?>? iconTheme}
)

Creates a theme that can be used for ThemeData.navigationDrawerTheme and NavigationDrawerTheme.

Implementation

const NavigationDrawerThemeData({
  this.tileHeight,
  this.backgroundColor,
  this.elevation,
  this.shadowColor,
  this.surfaceTintColor,
  this.indicatorColor,
  this.indicatorShape,
  this.indicatorSize,
  this.labelTextStyle,
  this.iconTheme,
});