BottomBarWidget constructor

const BottomBarWidget({
  1. Key? key,
  2. BottomBarStyle? barStyle,
  3. Color? color,
  4. Color? fixedColor,
  5. required List<BottomBarItem> items,
  6. BottomBarListener? listener,
  7. List<Widget>? tabWidgets,
  8. Color? backgroundColor,
  9. double elevation = 0,
  10. BottomConvexAction? floatConvex,
  11. double? convexSize,
  12. double height = 60,
  13. double top = 0,
  14. int currentItem = 0,
  15. double iconSize = 20,
  16. double convexIconMargin = 5,
  17. double fontSize = 12,
  18. 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);