FastNavigationBarView constructor

const FastNavigationBarView({
  1. Key? key,
  2. required List<FastNavigationDestination> destinations,
  3. bool showAppBar = true,
  4. void onDestinationSelected(
    1. int
    )?,
  5. Color? backgroundColor,
  6. Color? indicatorColor,
  7. Widget? child,
})

Implementation

const FastNavigationBarView({
  super.key,
  required this.destinations,
  this.showAppBar = true,
  this.onDestinationSelected,
  this.backgroundColor,
  this.indicatorColor,
  this.child,
});