Unverified Commit ed950969 authored by Justin McCandless's avatar Justin McCandless Committed by GitHub

Docs explaining how to avoid the problem of height toggling with error (#29811)

Documentation that explains a common use case seen in Github issues where users were surprised by TextFormField growth to accommodate validation messages.
parent 673e9892
...@@ -288,6 +288,13 @@ class FormField<T> extends StatefulWidget { ...@@ -288,6 +288,13 @@ class FormField<T> extends StatefulWidget {
/// The returned value is exposed by the [FormFieldState.errorText] property. /// The returned value is exposed by the [FormFieldState.errorText] property.
/// The [TextFormField] uses this to override the [InputDecoration.errorText] /// The [TextFormField] uses this to override the [InputDecoration.errorText]
/// value. /// value.
///
/// Alternating between error and normal state can cause the height of the
/// [TextFormField] to change if no other subtext decoration is set on the
/// field. To create a field whose height is fixed regardless of whether or
/// not an error is displayed, either wrap the [TextFormField] in a fixed
/// height parent like [SizedBox], or set the [TextFormField.helperText]
/// parameter to a space.
final FormFieldValidator<T> validator; final FormFieldValidator<T> validator;
/// Function that returns the widget representing this form field. It is /// Function that returns the widget representing this form field. It is
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment