BottomNavigationBarProps constructor

const BottomNavigationBarProps({
  1. required List<BottomNavItem> items,
  2. required int selectedIndex,
  3. void onChanged(
    1. int index
    )?,
  4. bool showLabels = true,
  5. bool showSelectedLabels = false,
  6. double height = 64,
})

Implementation

const BottomNavigationBarProps({
  required this.items,
  required this.selectedIndex,
  this.onChanged,
  this.showLabels = true,
  this.showSelectedLabels = false,
  this.height = 64,
});