You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FormBuilderTextField has a constructor parameter enabled, but it is not used. readonly is used instead. This can be seen here. This is inconsistent with the Flutter API for TextField.
Solution: Support enabled to be consistent with the Flutter API for TextField. Deprecate readonly but continue to support it for backwards compatibility.
The text was updated successfully, but these errors were encountered:
Hi @jrnelson333,
I was working on changing the readonly property to enabled but it seems Flutter have in the latest versions included readOnly property in the API for TextField.
What we may need to do therefore is to change readonly to readOnly.
FormBuilderTextField has a constructor parameter
enabled
, but it is not used.readonly
is used instead. This can be seen here. This is inconsistent with the Flutter API for TextField.Solution: Support
enabled
to be consistent with the Flutter API for TextField. Deprecatereadonly
but continue to support it for backwards compatibility.The text was updated successfully, but these errors were encountered: