FcNavigationBar constructor

const FcNavigationBar({
  1. Key? key,
  2. required List<FcNavigationBarItem> items,
  3. int currentIndex = 0,
  4. Color? selectedItemColor,
  5. Color? unselectedItemColor,
  6. void onTap(
    1. int index
    )?,
})

Implementation

const FcNavigationBar({
  Key? key,
  required this.items,
  this.currentIndex = 0,
  this.selectedItemColor,
  this.unselectedItemColor,
  this.onTap,
}) : super(key: key);