NavigationPanel constructor

const NavigationPanel({
  1. Key? key,
  2. required int currentIndex,
  3. required List<NavigationPanelItem> items,
  4. NavigationPanelMenuItem? menu,
  5. NavigationPanelItem? bottom,
  6. NavigationPanelDisplayMode? displayMode,
  7. bool useAcrylic = true,
})

Implementation

const NavigationPanel({
  Key? key,
  required this.currentIndex,
  required this.items,
  this.menu,
  this.bottom,
  this.displayMode,
  this.useAcrylic = true,
}) : super(key: key);