NavigationIndicator constructor
- Key? key,
- required Animation<
double> animation, - Color? color,
- double width = _kIndicatorWidth,
- double height = _kIndicatorHeight,
- BorderRadius borderRadius = const BorderRadius.all(Radius.circular(16)),
- ShapeBorder? shape,
Builds an indicator, usually used in a stack behind the icon of a navigation bar destination.
Implementation
const NavigationIndicator({
super.key,
required this.animation,
this.color,
this.width = _kIndicatorWidth,
this.height = _kIndicatorHeight,
this.borderRadius = const BorderRadius.all(Radius.circular(16)),
this.shape,
});