CustomLineIndicatorBottomNavbar constructor

CustomLineIndicatorBottomNavbar({
  1. Color? backgroundColor,
  2. Color? selectedColor,
  3. required List<CustomBottomBarItems> customBottomBarItems,
  4. Color? unSelectedColor,
  5. double unselectedFontSize = 11,
  6. double selectedFontSize = 12,
  7. Color? splashColor,
  8. int currentIndex = 0,
  9. required dynamic onTap(
    1. int
    ),
  10. bool enableLineIndicator = true,
  11. double lineIndicatorWidth = 3,
  12. IndicatorType indicatorType = IndicatorType.Top,
  13. LinearGradient? gradient,
})

Implementation

CustomLineIndicatorBottomNavbar({
  this.backgroundColor,
  this.selectedColor,
  required this.customBottomBarItems,
  this.unSelectedColor,
  this.unselectedFontSize = 11,
  this.selectedFontSize = 12,
  this.splashColor,
  this.currentIndex = 0,
  required this.onTap,
  this.enableLineIndicator = true,
  this.lineIndicatorWidth = 3,
  this.indicatorType = IndicatorType.Top,
  this.gradient,
});