-
-
Notifications
You must be signed in to change notification settings - Fork 546
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
added key to text_field, checkbox, checkbox_list #165
added key to text_field, checkbox, checkbox_list #165
Conversation
Hi @yuzurih4, I've realized you've wrapped the fields in a So that instead of having |
Ahh I see, let me try with that and see if this PR is still valid. Thanks for pointing it out :) |
Hi @danvick, Actually I am not an expect on Widget testing too, but my finding is I can't use With
|
remove checkbox container fix indent
Danvick master to zaralockheart master
Duplicate of #184 |
@shashikantshaale ahhh I see that you add key argument, I am trying to reuse the name as the key so that developers don't have to add Key argument to it. Alright, I'll close this. |
Hi @zaralockheart, |
Hi, thanks for this superb library. It helps a lot in building a form, especially a sophisticated one!
However, I might want to add something that seems pretty useful (I guess) which is using key from the attribute for widget testing.
I've added Key to these three fields
FormBuilderTextField
,FormBuilderCheckbox
,FormBuilderCheckboxList
Also, I added widget test for example for those who may find it beneficial.