I have an NS-Angular app that already has an android app and everything works fine.
The issue here is with a reusable button component the angular way like:
<app-button [btnTxt]="'Sign Up'" [btnBgColor]="'#FF4715'" [btnTxtColor]="'white'" [btnType]="'pill'" [btnWidth]="'85%'" (tap)="goToSignUp()"></app-button>
The tap attribute calling the function goToSignUp is not triggering in IOS build.
Any insight on what the problem might be?