Hello Everyone,
How can I properly use a settingspage.
I have two toggles in my settingspage
<ion-item>
<ion-label> Sound</ion-label>
<ion-toggle checked="false"></ion-toggle>
</ion-item>
<ion-item>
<ion-label> Hints</ion-label>
<ion-toggle checked="false"></ion-toggle>
</ion-item>
Now when someone toggles the hint button, it should dissappear in actionPage. How can I hide this button ?
<button ion-button (click)="getHint()">
<ion-icon ios="ios-help" md="md-help"></ion-icon>
</button>
Thanks in advance!