FBreadcrumbItem constructor

const FBreadcrumbItem({
  1. required Widget child,
  2. bool current,
  3. bool autofocus,
  4. FocusNode? focusNode,
  5. ValueChanged<bool>? onFocusChange,
  6. ValueChanged<bool>? onHoverChange,
  7. ValueChanged<Set<WidgetState>>? onStateChange,
  8. VoidCallback? onPress,
  9. Key? key,
})

Creates a crumb that typically represents a single item in the navigation path.

Implementation

const factory FBreadcrumbItem({
  required Widget child,
  bool current,
  bool autofocus,
  FocusNode? focusNode,
  ValueChanged<bool>? onFocusChange,
  ValueChanged<bool>? onHoverChange,
  ValueChanged<Set<WidgetState>>? onStateChange,
  VoidCallback? onPress,
  Key? key,
}) = _Crumb;