FBottomNavigationBar constructor

const FBottomNavigationBar({
  1. required List<Widget> children,
  2. FBottomNavigationBarStyle? style,
  3. ValueChanged<int>? onChange,
  4. int index = -1,
  5. 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,
  super.key,
});