FPickerWheel constructor

const FPickerWheel({
  1. required List<Widget> children,
  2. bool loop,
  3. int flex,
  4. double? itemExtent,
  5. String? semanticsLabel,
  6. String semanticsValueBuilder(
    1. int index
    )?,
  7. bool autofocus,
  8. FocusNode? focusNode,
  9. ValueChanged<bool>? onFocusChange,
  10. Key? key,
})

Creates a picker wheel with the given children.

Implementation

const factory FPickerWheel({
  required List<Widget> children,
  bool loop,
  int flex,
  double? itemExtent,
  String? semanticsLabel,
  String Function(int index)? semanticsValueBuilder,
  bool autofocus,
  FocusNode? focusNode,
  ValueChanged<bool>? onFocusChange,
  Key? key,
}) = ListWheel;