CustomLineIndicatorBottomNavbarItems constructor

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

Implementation

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