Joan Pablo

Results 119 comments of Joan Pablo

Regarding the feature about getting the **actual** and **current** values of a *Control* int this [thread](https://github.com/joanpablo/reactive_forms/issues/237) we discuss how to implement this behavior using Reactive Forms and [rxdart](https://pub.dev/packages/rxdart). Of course,...

Hi @vasilich6107 I have seen that you have recently modified the implementation of your `ReactiveFormControlValueListener`, you have included a `ReactiveFormControlValueBuilder`. I understand that it is a prototype and still a...

Thanks for your comments @vasilich6107 they are very important to me. I got your point. Anyway I will implement the ```dart ReactiveValueListenableBuilder( formControlName: '....', builder: (context, control, child) => ...,...

Hi @Solido, There is a PENDING state in Forms and Controls, when validity verifications are in progress, so not sure to understand your issue, can you give a more detailed...

Thanks, guys, that will be awesome to have some templates for Issues and PR.

Hi @Husssam12, Thanks a lot for the issue and for supporting **Reactive Forms**. This is quite interesting, and an attractive idea. But I have some questions. First, why would you...

Hi @Husssam12 What about the "viewToModel" method? In your example you are defining a callback for the "modelToView", but you have not defined one for the "viewToModel": ```JavaScript ControlValueAccessor.create( modelToView:...

Hi again @Husssam12, In your example (use case) you are calling the method **prettyDuration()** from the duration package passing as an argument the *modelValue*, but you are not checking if...

Hi @mr7ssam @vasilich6107, Let me recap: at this point we have something like this: ```dart typedef ModelToViewCallback = ViewDataType? Function(ModelDataType? modelValue); typedef ViewToModelCallback = ModelDataType? Function(ViewDataType? modelValue); class InlineValueAccessor extends...