KntBottomNav constructor

const KntBottomNav({
  1. Key? key,
  2. required ValueNotifier<int> onTabChanged,
  3. List<TabIcon> icons = const [],
  4. double? iconSize,
  5. double? iconSpacing,
  6. BorderRadius? borderRadius,
  7. Color? backgroundColor,
  8. List<BoxShadow>? boxShadow,
  9. Color? selectedItemColor,
  10. Color? unselectedItemColor,
  11. bool showLabel = true,
})

Implementation

const KntBottomNav({
  super.key,
  required this.onTabChanged,
  this.icons = const [],
  this.iconSize,
  this.iconSpacing,
  this.borderRadius,
  this.backgroundColor,
  this.boxShadow,
  this.selectedItemColor,
  this.unselectedItemColor,
  this.showLabel = true,
});