FormTimePicker constructor

FormTimePicker({
  1. Key key,
  2. YekongaForm formControl,
  3. String value,
  4. @required String name,
  5. FocusNode focusNode,
  6. InputDecoration decoration = const InputDecoration(),
  7. TextInputType keyboardType = TextInputType.text,
  8. TextInputAction textInputAction,
  9. TextCapitalization textCapitalization = TextCapitalization.none,
  10. TextStyle style,
  11. StrutStyle strutStyle,
  12. TextAlign textAlign = TextAlign.start,
  13. TextAlignVertical textAlignVertical,
  14. TextDirection textDirection,
  15. bool readOnly = false,
  16. bool isRequired = false,
  17. ToolbarOptions toolbarOptions,
  18. bool showCursor,
  19. bool autofocus = false,
  20. String obscuringCharacter = '•',
  21. bool obscureText = false,
  22. bool autocorrect = true,
  23. SmartDashesType smartDashesType = SmartDashesType.enabled,
  24. SmartQuotesType smartQuotesType = SmartQuotesType.enabled,
  25. bool enableSuggestions = true,
  26. int maxLines = 1,
  27. int minLines,
  28. bool expands = false,
  29. int maxLength,
  30. bool maxLengthEnforced = true,
  31. MaxLengthEnforcement maxLengthEnforcement,
  32. ValueChanged<String> onChanged,
  33. VoidCallback onEditingComplete,
  34. ValueChanged<String> onSubmitted,
  35. AppPrivateCommandCallback onAppPrivateCommand,
  36. List<TextInputFormatter> inputFormatters,
  37. bool enabled = false,
  38. double cursorWidth = 2.0,
  39. double cursorHeight,
  40. Radius cursorRadius,
  41. Color cursorColor,
  42. Brightness keyboardAppearance,
  43. EdgeInsets scrollPadding = const EdgeInsets.all(20.0),
  44. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  45. bool enableInteractiveSelection = true,
  46. TextSelectionControls selectionControls,
  47. GestureTapCallback onTap,
  48. MouseCursor mouseCursor,
  49. InputCounterWidgetBuilder buildCounter,
  50. ScrollController scrollController,
  51. ScrollPhysics scrollPhysics,
  52. Iterable<String> autofillHints,
  53. String restorationId,
})

Implementation

FormTimePicker({
  Key key,
  this.formControl,
  this.value,
  @required this.name,
  this.focusNode,
  this.decoration = const InputDecoration(),
  this.keyboardType = TextInputType.text,
  this.textInputAction,
  this.textCapitalization = TextCapitalization.none,
  this.style,
  this.strutStyle,
  this.textAlign = TextAlign.start,
  this.textAlignVertical,
  this.textDirection,
  this.readOnly = false,
  this.isRequired = false,
  this.toolbarOptions,
  this.showCursor,
  this.autofocus = false,
  this.obscuringCharacter = '•',
  this.obscureText = false,
  this.autocorrect = true,
  this.smartDashesType = SmartDashesType.enabled,
  this.smartQuotesType = SmartQuotesType.enabled,
  this.enableSuggestions = true,
  this.maxLines = 1,
  this.minLines,
  this.expands = false,
  this.maxLength,
  this.maxLengthEnforced = true,
  this.maxLengthEnforcement,
  this.onChanged,
  this.onEditingComplete,
  this.onSubmitted,
  this.onAppPrivateCommand,
  this.inputFormatters,
  this.enabled = false,
  this.cursorWidth = 2.0,
  this.cursorHeight,
  this.cursorRadius,
  this.cursorColor,
  this.keyboardAppearance,
  this.scrollPadding = const EdgeInsets.all(20.0),
  this.dragStartBehavior = DragStartBehavior.start,
  this.enableInteractiveSelection = true,
  this.selectionControls,
  this.onTap,
  this.mouseCursor,
  this.buildCounter,
  this.scrollController,
  this.scrollPhysics,
  this.autofillHints,
  this.restorationId,
}) : super(key: key);