BottomBarWidget constructor
const
BottomBarWidget({
- Key? key,
- BottomBarStyle? barStyle,
- Color? color,
- Color? fixedColor,
- required List<
BottomBarItem> items, - BottomBarListener? listener,
- List<
Widget> ? tabWidgets, - Color? backgroundColor,
- double elevation = 0,
- BottomConvexAction? floatConvex,
- double? convexSize,
- double height = 60,
- double top = 0,
- int currentItem = 0,
- double iconSize = 20,
- double convexIconMargin = 5,
- double fontSize = 12,
- double drawablePadding = 5,
Implementation
const BottomBarWidget(
{Key? key,
this.barStyle,
this.color,
this.fixedColor,
required this.items,
this.listener,
this.tabWidgets,
this.backgroundColor,
this.elevation = 0,
this.floatConvex,
this.convexSize,
this.height = 60,
this.top = 0,
this.currentItem = 0,
this.iconSize = 20,
this.convexIconMargin = 5,
this.fontSize = 12,
this.drawablePadding = 5})
: super(key: key);