NavigationBarThemeModifier constructor

const NavigationBarThemeModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required NavigationBarThemeData data,
})

Creates a navigation rail theme that controls the NavigationBarThemeData properties for a NavigationBar.

The data argument must not be null.

Implementation

const NavigationBarThemeModifier({
  super.key,
  super.child,
  super.modifierKey,
  required this.data,
});