SyBottomNavBar constructor

const SyBottomNavBar({
  1. Key? key,
  2. required List<SyBottomNavItem> items,
  3. String currentLocation = 'home',
  4. Color selectedColor = Colors.orange,
  5. Color unselectedColor = Colors.blueGrey,
  6. double iconSize = 22,
  7. double fontSize = 13,
})

Implementation

const SyBottomNavBar({
  super.key,
  required this.items,
  this.currentLocation = 'home',
  this.selectedColor = Colors.orange,
  this.unselectedColor = Colors.blueGrey,
  this.iconSize = 22,
  this.fontSize = 13,
});