BottomNavigationView constructor

const BottomNavigationView({
  1. Key? key,
  2. BottomNavigationController? controller,
  3. BottomNavigationTransitionType transitionType = BottomNavigationTransitionType.none,
  4. Color? backgroundColor,
  5. required List<Widget> children,
})

Implementation

const BottomNavigationView({
  Key? key,
  this.controller,
  this.transitionType = BottomNavigationTransitionType.none,
  this.backgroundColor,
  required this.children,
}) : super(key: key);