Skip to content

Commit 8772c1f

Browse files
committed
v1.0
底部导航框架
1 parent 1fdb8df commit 8772c1f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+1125
-2
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/node_modules
2+
/oh_modules
3+
/local.properties
4+
/.idea
5+
**/build
6+
/.hvigor
7+
.cxx
8+
/.clangd
9+
/.clang-format
10+
/.clang-tidy
11+
**/.test

AppScope/app.json5

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"app": {
3+
"bundleName": "com.pgzxc.wanandroidhm",
4+
"vendor": "example",
5+
"versionCode": 1000000,
6+
"versionName": "1.0.0",
7+
"icon": "$media:app_icon",
8+
"label": "$string:app_name"
9+
}
10+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"string": [
3+
{
4+
"name": "app_name",
5+
"value": "WanAndroidHM"
6+
}
7+
]
8+
}
6.63 KB
Loading

README.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
1-
# WanAndroidHM
2-
玩安卓鸿蒙版本
1+
## 一 开发环境
2+
3+
* 操作系统:Windows 11 专业版 22H2
4+
* 开发工具:DevEco Studio 3.1.1 Release版本
5+
* 开发语言:ArkTS
6+
* node.js:v16.19.1
7+
8+
## 二 基础知识
9+
10+
* ArkTS语法(基本语法、状态管理、渲染控制)
11+
* UI(ArkTS声明式开发)及预览
12+
* HTTP数据请求
13+
14+
## 三 开发进度
15+
16+
### 3.1 v1.0
17+
18+
* 启动页+底部导航框架
19+
* 底部导航框架使用:Tabs+tabBar

build-profile.json5

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"app": {
3+
"signingConfigs": [],
4+
"compileSdkVersion": 9,
5+
"compatibleSdkVersion": 9,
6+
"products": [
7+
{
8+
"name": "default",
9+
"signingConfig": "default",
10+
}
11+
]
12+
},
13+
"modules": [
14+
{
15+
"name": "entry",
16+
"srcPath": "./entry",
17+
"targets": [
18+
{
19+
"name": "default",
20+
"applyToProducts": [
21+
"default"
22+
]
23+
}
24+
]
25+
}
26+
]
27+
}

entry/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/node_modules
2+
/oh_modules
3+
/.preview
4+
/build
5+
/.cxx
6+
/.test

entry/build-profile.json5

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"apiType": 'stageMode',
3+
"buildOption": {
4+
},
5+
"targets": [
6+
{
7+
"name": "default",
8+
"runtimeOS": "HarmonyOS"
9+
},
10+
{
11+
"name": "ohosTest",
12+
}
13+
]
14+
}

entry/hvigorfile.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently.
2+
export { hapTasks } from '@ohos/hvigor-ohos-plugin';

entry/oh-package.json5

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "entry",
3+
"version": "1.0.0",
4+
"description": "Please describe the basic information.",
5+
"main": "",
6+
"author": "",
7+
"license": "",
8+
"dependencies": {}
9+
}
10+

0 commit comments

Comments
 (0)