This plugin allows native preference saving\loading on iOS and Android
- Create iOS Settings.bundle files in App_Resources/iOS See Demo or Apple Developer docs
- In App_Resources/Android/xml create preferences.xml
- Android PreferenceScreen docs
Describe your plugin installation steps. Ideally it would be something like:
tns plugin add nativescript-preferences
var prefs = new Preferences();
//Get existing value
prefs.getValue("name_preference");
//Set value
prefs.setValue("name_preference", "some new text");
Property | Default | Description |
---|---|---|
openSettings(): any; | Opens the native settings panes | |
getValue(key: string): any; | Gets the value for the preference | |
setValue(key: string, value: any): void; | Sets the passed value to the preference |
Apache License Version 2.0, January 2004