Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
AppScope/ | 12-May-2024 | - | 23 | 21 | ||
common/ | 12-May-2024 | - | 2,101 | 1,455 | ||
entry/ | 12-May-2024 | - | 225 | 173 | ||
features/ | 12-May-2024 | - | 10,921 | 9,333 | ||
infra/ | 12-May-2024 | - | 6 | 6 | ||
product/ | 12-May-2024 | - | 3,976 | 3,486 | ||
signature/ | 12-May-2024 | - | ||||
.gitignore | D | 12-May-2024 | 75 | 6 | 6 | |
LICENSE | D | 12-May-2024 | 11.1 KiB | 202 | 169 | |
OAT.xml | D | 12-May-2024 | 5.7 KiB | 89 | 32 | |
README.en.md | D | 12-May-2024 | 967 | 37 | 25 | |
README_zh.md | D | 12-May-2024 | 2.4 KiB | 60 | 48 | |
build-profile.json5 | D | 12-May-2024 | 1.7 KiB | 90 | 90 | |
hvigorfile.js | D | 12-May-2024 | 168 | 2 | 1 | |
package-lock.json | D | 12-May-2024 | 67 KiB | 1,658 | 1,657 | |
package.json | D | 12-May-2024 | 444 | 20 | 19 |
README.en.md
1# applications_screenlock 2 3#### Description 4{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**} 5 6#### Software Architecture 7Software architecture description 8 9#### Installation 10 111. xxxx 122. xxxx 133. xxxx 14 15#### Instructions 16 171. xxxx 182. xxxx 193. xxxx 20 21#### Contribution 22 231. Fork the repository 242. Create Feat_xxx branch 253. Commit your code 264. Create Pull Request 27 28 29#### Gitee Feature 30 311. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md 322. Gitee blog [blog.gitee.com](https://blog.gitee.com) 333. Explore open source project [https://gitee.com/explore](https://gitee.com/explore) 344. The most valuable open source project [GVP](https://gitee.com/gvp) 355. The manual of Gitee [https://gitee.com/help](https://gitee.com/help) 366. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) 37
README_zh.md
1# 锁屏 2 3## 简介 4 5### 内容介绍 6锁屏应用是OpenHarmony中预置的系统应用,为用户提供锁屏的基础能力。提供滑动解锁、密码解锁等解锁能力,以及锁屏页面的信息展示能力。 7 8### 架构图介绍 9 10![](figures/screenlock.png) 11 12feature 13``` 141.在开机流程、亮屏流程、灭屏流程中添加加锁流程及所对应的解锁流程,实现与系统交互。\ 152.通过时间日期组件、通知组件、状态栏组件、lockIcon和快捷开关组件,实现相关的信息展示。\ 163.支持数字解锁、图案解锁、人脸解锁和密码混合解锁。 17``` 18 19common 20``` 21通用接口,实现日志打印,外部接口管理等功能。 22``` 23## 目录 24 25``` 26/applications/standard/screenlock 27 ├── common # 通用工具类目录 28 ├── entry # entry模块目录 29 ├── features # 子组件目录 30 │ ├── batterycomponent # 电池组件 31 │ ├── clockcomponent # 时钟组件 32 │ ├── datetimecomponent # 日期时间组件 33 │ ├── noticeitem # 通知子组件 34 │ ├── notificationservice # 通知服务组件 35 │ ├── screenlock # 锁屏组件 36 │ ├── common # 通用工具 37 │ ├── model # 数据管理 38 │ ├── view # 组件样式管理 39 │ ├── vm # 数据样式绑定管理 40 │ ├── shortcutcomponent # 快捷开关组件 41 │ ├── wallpapercomponent # 壁纸组件 42 │ ├── wificomponent # wifi组件 43 ├── product # 锁屏总体功能目录 44 │ ├── pc # 模块目录 45 │ ├── pages/slidesrceenlock # 滑动锁屏 46 │ ├── phone # 模块目录 47 │ ├── pages/slidesrceenlock # 滑动锁屏 48 ├── signature # 证书文件目录 49 ├── build.gradle # 全局编译配置文件 50 ├── LICENSE # 许可文件 51 ├── settings.gradle # 编译模块配置文件 52``` 53 54## 相关仓 55 56系统应用 57 58**applications\_screenlock** 59 60