ArcaneBottomNavigationBar constructor

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

Implementation

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