OudsNavigationBar constructor

const OudsNavigationBar({
  1. Key? key,
  2. required List<OudsNavigationBarItem> destinations,
  3. bool translucent = false,
  4. int selectedIndex = 0,
  5. ValueChanged<int>? onDestinationSelected,
})

Creates an OUDS Navigation Bar with configurable items, transparency, and callbacks.

Implementation

const OudsNavigationBar({
  super.key,
  required this.destinations,
  this.translucent = false,
  this.selectedIndex = 0,
  this.onDestinationSelected,
});