Is there way to disable settings or make them immutable/readonly like this, but for app settings?
We are using Angular, Ionic, Cordova environment. We were using a disable tag in the browser like this
<ion-item class="settings-item" *ngSwitchCase="'password'">
<ion-label class="settings-label">{{field.name}}</ion-label>
<ion-input type="password" class="settings-field" disabled={{field.overridden}} [(ngModel)]="field.value" [attr.data-e2e]="field.key"></ion-input>
</ion-item>
But unfortunately, this only works on the browser not on a device
This is my first post on StackOverFlow, please be gentle with the voting. If you see a problem with the question/body please let me know.