OudsTabBar constructor

const OudsTabBar({
  1. Key? key,
  2. required List<OudsNavigationBarItem> items,
  3. bool translucent = false,
  4. int currentIndex = 0,
  5. ValueChanged<int>? onTap,
})

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

Implementation

const OudsTabBar({
  super.key,
  required this.items,
  this.translucent = false,
  this.currentIndex = 0,
  this.onTap,
});