Miguel Peguero

Results 6 comments of Miguel Peguero

I had the same error and my mistake was my build command was ionic build iOS instead of `ionic cordova build ios `

Just install the 4.7 version. npm install [email protected] --save I had same error and this solved it

Try this article https://blog.nraboy.com/2015/03/sign-into-firebase-with-facebook-using-ionic-framework/ Date: Wed, 28 Oct 2015 08:23:57 -0700 From: [email protected] To: [email protected] CC: [email protected] Subject: Re: [ngFacebook] Does not works on cordova android project (#53) +1 I've...

This component does not work on mobile devices.

control has a property "parant" and you can use parent instead of root https://angular.io/api/forms/FormControl // I think this could works if (control.parent == null || control.parent === control) { return...

This is the way i Solved my problem, It works for me: TS: ``` get OptionsControls() { return (this.form.get("options") as FormGroup).controls; } get options(): FormArray { return (this.form.get("options") as FormArray);...