Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Under Beta Code 10.12.13 Hidden Fields require Maximum Line Length to be 1 line #200

Closed
jamiethain opened this issue Dec 11, 2019 · 0 comments
Labels
solved A solution for this issue had been found

Comments

@jamiethain
Copy link

Under the Beta the text field input throws an assertion if obscure is set, and maxLines is not set.

child: FormBuilderTextField(
attribute: 'password',
decoration: InputDecoration(labelText: 'Password'),
obscureText: true,

Assertion was something similar to Text Field must have only one line if text is obscured. I didn't catch it I just fixed it with...

child: FormBuilderTextField(
maxLines: 1,
attribute: 'password',
decoration: InputDecoration(labelText: 'Password'),
obscureText: true,

@danvick danvick added the solved A solution for this issue had been found label May 7, 2020
@danvick danvick closed this as completed Jul 18, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
solved A solution for this issue had been found
Projects
None yet
Development

No branches or pull requests

2 participants