GiancarloCode
                                            GiancarloCode
                                        
                                    I will add a method to enable / disable auto validation in a few days :) Respect validate when loose focus, I am not sure how it would be, I...
Yes, more or less that's the idea, But it would be creating events for the form bloc and the public methods for this events `EnableAutoValidation()` `DisableAutoValidation()` and process them on...
@fabiancrx Hello :) For example in https://pub.dev/documentation/form_bloc/latest/form_bloc/ListFieldBlocState/fieldBlocs.html or https://pub.dev/documentation/form_bloc/latest/form_bloc/FormBlocState/fieldBlocs.html This will prevent from trying to change the order, or delete a field bloc "by error"
@moriswala @ignaciolopez12 Hello, sorry for the delay, you can use the widget you want easily, check [this comment](https://github.com/GiancarloCode/form_bloc/issues/64#issuecomment-613836269) that explains how to do it
@ignaciolopez12 Yes, I will check some pull requests before so that they are not outdated and update tomorrow or the day after tomorrow
Hello, Change the DateFormat to ```dart format: DateFormat('dd-MM-yyyy'), ``` Checkout https://github.com/GiancarloCode/form_bloc/issues/79 ___ And set ```dart showClearIcon: false, ```
Thanks, yes, you're right, it's a mistake. I'm still not sure which is the best solution, could you give your opinion please. 1. Remove all items from the list 2....
Hello @JohnGalt1717, Interesting, you could be a little more descriptive of what kind of events and statesyou would like to add, so I can focus more. I think it would...
Hello, sorry for not replying, I have not had time, the weekend I will review everything well. @ayushin I think I will improve the interface of `SingleFieldBloc` so that it...
Hi, I include it later, what are you trying to do? for now you can listen to the field bloc ```dart formBloc.booleanField.onValueChanges( onData: (previous, current) async* { if (current.value) {...