提交 c57e930b 编写于 作者: B bojiang

jiangbo91@huawei.com

Signed-off-by: Nbojiang <jiangbo91@huawei.com>
Change-Id: Ic8b7cc87d0a0e12914b6f55ded4a8ebf6a6e388a
上级 34ee7c78
...@@ -520,7 +520,7 @@ delete(propName: string): boolean ...@@ -520,7 +520,7 @@ delete(propName: string): boolean
| 类型 | 描述 | | 类型 | 描述 |
| ------- | ------------------------------------------------------------ | | ------- | ------------------------------------------------------------ |
| boolean | 删除key指定的键值对,如果存在且删除成功返回true,不存在或删除失败返回false。 | | boolean | 删除key指定的键值对。存在且删除成功,返回true。不存在、删除失败或有状态变量依旧引用propName,返回false。 |
```ts ```ts
this.storage = new LocalStorage() this.storage = new LocalStorage()
...@@ -699,14 +699,14 @@ EnvProp\<S>(key: string, value: S): boolean ...@@ -699,14 +699,14 @@ EnvProp\<S>(key: string, value: S): boolean
**内置环境变量说明:** **内置环境变量说明:**
| key | 类型 | 说明 | | key | 类型 | 说明 |
| ------------ | ------------- | ------------------- | | ------------ | ------------- | ------------------- |
| accessibilityEnabled | boolean | 无障碍屏幕朗读是否启用。 | | accessibilityEnabled | boolean | 无障碍屏幕朗读是否启用。 |
| colorMode | ColorMode | 深浅色模式,可选值为:<br>- ColorMode.LIGHT:浅色模式;<br>- ColorMode.DARK:深色模式。 | | colorMode | ColorMode | 深浅色模式,可选值为:<br>- ColorMode.LIGHT:浅色模式;<br>- ColorMode.DARK:深色模式。 |
| fontScale | number | 字体大小比例。 | | fontScale | number | 字体大小比例。 |
| fontWeightScale | number | 字重比例。 | | fontWeightScale | number | 字重比例。 |
| layoutDirection | LayoutDirection | 布局方向类型,可选值为:<br>- LayoutDirection.LTR:从左到右;<br>- LayoutDirection.RTL:从右到左。 | | layoutDirection | LayoutDirection | 布局方向类型,可选值为:<br>- LayoutDirection.LTR:从左到右;<br>- LayoutDirection.RTL:从右到左。 |
| languageCode | string | 当前系统语言,小写字母,例如zh。 | | languageCode | string | 当前系统语言,小写字母,例如zh。 |
```ts ```ts
Environment.EnvProp('accessibilityEnabled', 'default') Environment.EnvProp('accessibilityEnabled', 'default')
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册