CustomLineIndicatorBottomNavbarItems constructor

CustomLineIndicatorBottomNavbarItems({
  1. IconData? icon,
  2. String? label,
  3. Color? selectedColor,
  4. Color? unSelectedColor,
  5. double unSelectedFontSize = 11,
  6. double selectedFontSize = 12,
  7. double selectedIconSize = 20,
  8. double unselectedIconSize = 15,
  9. Color? splashColor,
  10. int? currentIndex,
  11. required dynamic onTap(
    1. int
    ),
  12. required int index,
  13. bool enableLineIndicator = true,
  14. double lineIndicatorWidth = 3,
  15. IndicatorType indicatorType = IndicatorType.Top,
})

Implementation

CustomLineIndicatorBottomNavbarItems({
  this.icon,
  this.label,
  this.selectedColor,
  this.unSelectedColor,
  this.unSelectedFontSize = 11,
  this.selectedFontSize = 12,
  this.selectedIconSize = 20,
  this.unselectedIconSize = 15,
  this.splashColor,
  this.currentIndex,
  required this.onTap,
  required this.index,
  this.enableLineIndicator = true,
  this.lineIndicatorWidth = 3,
  this.indicatorType = IndicatorType.Top,
});