Jack Liu
Jack Liu
@fmatar Your implementation also makes me thinking, is that first step must be start with zero, or last step must be the position of last step item. The success result...
Hi, @frostythedev You can for sure. What are you difficulties? Can you show some code?
@frostythedev It is hard to read and give advice without runnable code. But for the attempts that given by you, second one seems a good try. It seems you are...
@frostythedev It should be something like this ```dart Validator _dateBeforeCurrent(InputFieldBloc dateBloc) { return (DateTime? dateTime){ DateTime now = DateTime.now(); print('validating date'); if(dateBloc.value!.isAfter(now) || (dateTime?.isAfter(now) ?? false) || (dateTime?.isAfter(dateBloc.value!) ?? false)){...
Hi @sjmamani, You can use bloc builder to build custom layout. For example : https://github.com/GiancarloCode/form_bloc/issues/180#issuecomment-1147395977
I think this problem occur when your form bloc builder putting the wrong value type.
@paramaw duplicate with #312
Hi, @bazl-E. For this situation, I would like to say your bloc having multiple jobs within one bloc. I think you should separate service and filter into different bloc otherwise...
@MarcinusX Thanks for opening this issue. I will take this issue a deep look later.
@MarcinusX I found where's the problem, however it is hard to solve the problem in simple way. The issue is, when the user pausing the application. The plugin willl auto...