child property

TextField child
final

Creates an animated container to wrap a child TextField and automatically resizes to fit the child's text value

AnimatedFittedTextFieldContainer(
  child: TextField(...),
)

The TextField to wrap - the controller must not be null.

Implementation

/// The `TextField` to wrap - the `controller` must not be `null`.
final TextField child;