OudsNavigationBar constructor
- Key? key,
- required List<
OudsNavigationBarItem> destinations, - bool translucent = false,
- int selectedIndex = 0,
- 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,
});