CuReBottomNavigationBar constructor

const CuReBottomNavigationBar({
  1. Key? key,
  2. required List<CuReBottomNavigationBarItem> items,
  3. dynamic onTap(
    1. int
    )?,
  4. required int currentIndex,
  5. Color? backgroundColor,
  6. Color? selectedColor,
  7. Color? unselectedColor,
  8. bool? showSelectedLabel = true,
  9. bool? showUnselectedLabel,
  10. bool? horizontalLayout = true,
  11. CuReShape? shape = CuReShape.rounded,
})

Implementation

const CuReBottomNavigationBar(
    {super.key,
    required this.items,
    this.onTap,
    required this.currentIndex,
    this.backgroundColor,
    this.selectedColor,
    this.unselectedColor,
    this.showSelectedLabel = true,
    this.showUnselectedLabel,
    this.horizontalLayout = true,
    this.shape = CuReShape.rounded});