npm i --save nativescript-preferences
- 版本:1.2.0
- GitHub: https://github.com/sitefinitysteve/nativescript-preferences
- NPM: https://npmjs.net.cn/package/nativescript-preferences
- 下载
- 昨日: 0
- 上周: 1
- 上个月: 21
NativeScript 首选项
此插件允许在 iOS 和 Android 上实现原生首选项的保存/加载
iOS 前提条件
- 在 App_Resources/iOS 中创建 iOS Settings.bundle 文件 查看示例 或 Apple 开发者文档
Android 前提条件
- 在 App_Resources/Android/xml 中创建 preferences.xml
- Android PreferenceScreen 文档
安装
描述您的插件安装步骤。理想情况下,它会像这样
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");
API
属性 | 默认值 | 描述 |
---|---|---|
openSettings(): any; | 打开原生设置面板 | |
getValue(key: string): any; | 获取首选项的值 | |
setValue(key: string, value: any): void; | 将传入的值设置为首选项 |
许可证
Apache 许可证版本 2.0,2004 年 1 月