OudsBottomBar constructor

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

Creates an adaptive OUDS bottom bar.

Implementation

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