VxAdaptiveNavigation constructor

const VxAdaptiveNavigation({
  1. Key? key,
  2. required List<NavigationDestination> destinations,
  3. required int selectedIndex,
  4. required void onDestinationSelected(
    1. int index
    ),
  5. required Widget child,
  6. Color? backgroundColor,
  7. double? elevation,
  8. bool? useIndicator,
  9. Color? indicatorColor,
  10. ShapeBorder? indicatorShape,
})

Implementation

const VxAdaptiveNavigation({
  super.key,
  required this.destinations,
  required this.selectedIndex,
  required this.onDestinationSelected,
  required this.child,
  this.backgroundColor,
  this.elevation,
  this.useIndicator,
  this.indicatorColor,
  this.indicatorShape,
});