TextFormEntries class
A collection of text-based form entry widgets
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
descriptionFormEntry(
{String title = 'Description', String subTitle = 'Enter description', String hint = 'Enter detailed description...', dynamic onSaved(String?)?, String? validator(String?)?, String? defaultValue, int maxLines = 4, bool enabled = true, GlobalKey< FormState> ? formKey, VoidCallback? onModified, required BuildContext context}) → Widget - Multi-line description/text area form field
-
emailFormEntry(
{String title = 'Email', String subTitle = 'Enter email address', String hint = 'email@example.com', dynamic onSaved(String?)?, String? validator(String?)?, String? defaultValue, bool enabled = true, GlobalKey< FormState> ? formKey, VoidCallback? onModified, required BuildContext context}) → Widget - Email form field with validation
-
textFormEntry(
{String title = 'Text', String subTitle = 'Enter text', String hint = 'Text', IconData iconData = Icons.text_fields, dynamic onSaved(String?)?, String? validator(String?)?, String? defaultValue, bool enabled = true, GlobalKey< FormState> ? formKey, VoidCallback? onModified, required BuildContext context}) → Widget - Generic text form field
-
websiteUrlFormEntry(
{String title = 'Website URL', String subTitle = 'Enter website URL', String hint = 'https://example.com', dynamic onSaved(String?)?, String? validator(String?)?, String? defaultValue, bool enabled = true, GlobalKey< FormState> ? formKey, VoidCallback? onModified, required BuildContext context}) → Widget - Website URL form field