FBottomNavigationBarItem constructor

const FBottomNavigationBarItem({
  1. required Widget icon,
  2. required Widget label,
  3. FBottomNavigationBarItemStyle? style,
  4. bool autofocus = false,
  5. FocusNode? focusNode,
  6. ValueChanged<bool>? onFocusChange,
  7. ValueChanged<bool>? onHoverChange,
  8. ValueChanged<Set<WidgetState>>? onStateChange,
  9. Key? key,
})

Implementation

const FBottomNavigationBarItem({
  required this.icon,
  required this.label,
  this.style,
  this.autofocus = false,
  this.focusNode,
  this.onFocusChange,
  this.onHoverChange,
  this.onStateChange,
  super.key,
});