FlutterFormInputPlainTextController class

Controller for plain text used by a FlutterFormInputWidget used in a FlutterForm.

Mainly used by FlutterFormInputPlainText.

Implemented types

Constructors

FlutterFormInputPlainTextController({required String? id, bool mandatory = false, String? value, String checkPageTitle(String? value)?, String checkPageDescription(String? value)?, void onChanged(String? value)?, void onSubmit(String? value)?})

Properties

checkPageDescription ↔ (String Function(String? value)?)
checkPageDescription is the same as checkPageTitle but for the description. If null no description will be shown.
getter/setter pairoverride
checkPageTitle ↔ (String Function(String? value)?)
checkPageTitle is a function where you can transform the value from the input into something representable. This value will be given when defining the check page widgets. If this function is not set, the value will be used as is. Example:
getter/setter pairoverride
hashCode int
The hash code for this object.
no setterinherited
id String?
The id determines the key in the Map returned by the FlutterForm.
getter/setter pairoverride
mandatory bool
mandatory determines if the input is mandatory.
getter/setter pairoverride
onChanged ↔ (void Function(String? value)?)
onChanged can be set to get the value whenever the user changes it. Should not be used to save the value.
getter/setter pairoverride
onSubmit ↔ (void Function(String? value)?)
onSubmit can be set to get the value whenever the user submits it. Should not be used to save the value.
getter/setter pairoverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String?
value is a way to set a initial value and will be the value when change by the user.
getter/setter pairoverride

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
onSaved(String? value) → void
onSaved goes of when the save function is called for the page if onValidate return null.
override
onValidate(String? value, String translator(String, {List<String>? params})) String?
onValidate is used to validate the given input by the user.
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited