2024-03-07 11:53:57 +08:00
|
|
|
# 项目概要
|
|
|
|
|
|
|
|
本项目模块分为:
|
|
|
|
- app: 主入口模块
|
|
|
|
- common_ui : 通用UI动态共享库模块
|
2024-04-18 18:44:19 +08:00
|
|
|
- base: 最底层的依赖库, 包含最通用的代码封装.
|
2024-03-07 11:53:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
## app模块
|
|
|
|
|
2024-04-16 19:49:51 +08:00
|
|
|
- [web功能](app/src/main/ets/pages/web)
|
|
|
|
- [布局学习](app/src/main/ets/pages/layout)
|
|
|
|
- [线性布局](app/src/main/ets/pages/layout/LinearLayoutPage.ets)
|
|
|
|
|
|
|
|
## common ui模块
|
|
|
|
|
|
|
|
包含的组件有:
|
|
|
|
|
|
|
|
- 封装[WebView](common_ui/src/main/ets/component/web/WebView.ets)
|
|
|
|
- 自定标题栏: [TitleBar](common_ui/src/main/ets/component/TitleBar.ets)
|
|
|
|
|
|
|
|
事件相关:
|
2024-04-18 18:44:19 +08:00
|
|
|
- 事件发射器 [Emitter](base/src/main/ets/event/Emitter.ets)
|
2024-04-16 19:49:51 +08:00
|
|
|
|
|
|
|
工具类:
|
|
|
|
- 公用资源调用类[CommonRes](common_ui/src/main/ets/utils/CommonRes.ets)
|
2024-04-18 18:44:19 +08:00
|
|
|
- 屏幕相关[ScreenUtil](base/src/main/ets/utils/ScreenUtil.ets)
|