BottomIndicatorBar constructor

BottomIndicatorBar({
  1. Key? key,
  2. required ValueChanged<int> onTap,
  3. required List<BottomIndicatorNavigationBarItem> items,
  4. Color? activeColor,
  5. Color inactiveColor = Colors.grey,
  6. Color? indicatorColor,
  7. bool shadow = true,
  8. int currentIndex = 0,
  9. double fontSize = 14,
  10. double iconSize = 24,
})

Implementation

BottomIndicatorBar({
  Key? key,
  required this.onTap,
  required this.items,
  this.activeColor,
  this.inactiveColor = Colors.grey,
  this.indicatorColor,
  this.shadow = true,
  this.currentIndex = 0,
  this.fontSize = 14,
  this.iconSize = 24,
}) : super(key: key);