FBottomNavigationBar constructor

const FBottomNavigationBar({
  1. required List<Widget> children,
  2. FBottomNavigationBarStyle style(
    1. FBottomNavigationBarStyle style
    )?,
  3. ValueChanged<int>? onChange,
  4. int index = -1,
  5. bool safeAreaTop = false,
  6. bool safeAreaBottom = false,
  7. Key? key,
})

Creates a FBottomNavigationBar with FBottomNavigationBarItems.

See FBottomNavigationBarItem for the items in a bottom navigation bar.

Implementation

const FBottomNavigationBar({
  required this.children,
  this.style,
  this.onChange,
  this.index = -1,
  this.safeAreaTop = false,
  this.safeAreaBottom = false,
  super.key,
});