I am trying to disable a button based on the form valid state in angular. I am using Reactive forms with Validators.required. I am using this condition [disabled]=!form.valid. It works fine if the user fills the data. But, when a browser(chrome) fills the data automatically the form state still remain same.
Note: I researched on this issue and didn't find a proper solution and why this happens. Please don't duplicate this question with this question Angular Form invalid on browser autofill
Is there a way to solve this.