SwitchInputField class
Constructors
SwitchInputField ({AutovalidateMode autovalidateMode = AutovalidateMode.onUserInteraction , bool enabled = true , Key ? key , required FieldModel <bool , bool > field , required String title , String ? helperText , int helperMaxLines = 1 , Color ? activeColor , Color ? tileColor , Color ? selectedTileColor , Color ? inactiveTrackColor , Color ? inactiveThumbColor , Color ? activeTrackColor , Icon ? icon , bool isThreeLine = false , EdgeInsetsGeometry ? padding , ShapeBorder ? shape , bool dense = false , bool autoFocus = false , bool selected = false , ImageProvider <Object > ? inactiveThumbImage , ImageProvider <Object > ? activeThumbImage , ListTileControlAffinity controlAffinity = ListTileControlAffinity.platform })
Properties
autovalidateMode
→ AutovalidateMode
Used to enable/disable this form field auto validation and update its
error text.
final inherited
builder
→ FormFieldBuilder <bool >
Function that returns the widget representing this form field. It is
passed the form field state as input, containing the current value and
validation state of this field.
final inherited
enabled
→ bool
Whether the form is able to receive user input.
final inherited
forceErrorText
→ String ?
An optional property that forces the FormFieldState into an error state
by directly setting the FormFieldState.errorText property without
running the validator function.
final inherited
hashCode
→ int
The hash code for this object.
no setter inherited
initialValue
→ bool ?
An optional value to initialize the form field to, or null otherwise.
final inherited
key
→ Key ?
Controls how one widget replaces another widget in the tree.
final inherited
onSaved
→ FormFieldSetter <bool > ?
An optional method to call with the final value when the form is saved via
FormState.save .
final inherited
restorationId
→ String ?
Restoration ID to save and restore the state of the form field.
final inherited
runtimeType
→ Type
A representation of the runtime type of the object.
no setter inherited
validator
→ FormFieldValidator <bool > ?
An optional method that validates an input. Returns an error string to
display if the input is invalid, or null otherwise.
final inherited