@coze-arch/cli 0.0.1-alpha.ef0249 → 0.0.1-alpha.ef8b63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/lib/__templates__/expo/.cozeproj/scripts/dev_run.sh +25 -16
  2. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +9 -8
  3. package/lib/__templates__/expo/README.md +2 -2
  4. package/lib/__templates__/expo/client/app/+not-found.tsx +30 -0
  5. package/lib/__templates__/expo/client/app/_layout.tsx +11 -8
  6. package/lib/__templates__/expo/client/app.config.ts +2 -2
  7. package/lib/__templates__/expo/client/components/Screen.tsx +1 -17
  8. package/lib/__templates__/expo/client/components/ThemedView.tsx +1 -2
  9. package/lib/__templates__/expo/client/constants/theme.ts +21 -698
  10. package/lib/__templates__/expo/client/eslint.config.mjs +20 -0
  11. package/lib/__templates__/expo/client/hooks/{useColorScheme.ts → useColorScheme.tsx} +20 -6
  12. package/lib/__templates__/expo/client/hooks/useSafeRouter.ts +152 -0
  13. package/lib/__templates__/expo/client/metro.config.js +3 -0
  14. package/lib/__templates__/expo/client/package.json +36 -34
  15. package/lib/__templates__/expo/client/screens/demo/index.tsx +3 -3
  16. package/lib/__templates__/expo/eslint-plugins/fontawesome6/names.js +1886 -2483
  17. package/lib/__templates__/expo/eslint-plugins/fontawesome6/rule.js +20 -1
  18. package/lib/__templates__/expo/eslint-plugins/fontawesome6/v5-only-names.js +388 -0
  19. package/lib/__templates__/expo/eslint-plugins/react-native/index.js +9 -0
  20. package/lib/__templates__/expo/eslint-plugins/react-native/rule.js +64 -0
  21. package/lib/__templates__/expo/eslint-plugins/reanimated/index.js +9 -0
  22. package/lib/__templates__/expo/eslint-plugins/reanimated/rule.js +88 -0
  23. package/lib/__templates__/expo/package.json +3 -0
  24. package/lib/__templates__/expo/patches/expo@54.0.33.patch +45 -0
  25. package/lib/__templates__/expo/pnpm-lock.yaml +1318 -2636
  26. package/lib/__templates__/expo/server/package.json +9 -7
  27. package/lib/__templates__/expo/server/src/index.ts +1 -0
  28. package/lib/__templates__/expo/template.config.js +56 -0
  29. package/lib/__templates__/native-static/.coze +11 -0
  30. package/lib/__templates__/native-static/index.html +33 -0
  31. package/lib/__templates__/native-static/styles/main.css +136 -0
  32. package/lib/__templates__/native-static/template.config.js +22 -0
  33. package/lib/__templates__/nextjs/.babelrc +15 -0
  34. package/lib/__templates__/nextjs/package.json +6 -1
  35. package/lib/__templates__/nextjs/pnpm-lock.yaml +2063 -926
  36. package/lib/__templates__/nextjs/src/app/layout.tsx +5 -3
  37. package/lib/__templates__/nextjs/src/app/page.tsx +18 -60
  38. package/lib/__templates__/nextjs/template.config.js +49 -14
  39. package/lib/__templates__/taro/.coze +14 -0
  40. package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +19 -0
  41. package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +14 -0
  42. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +2 -0
  43. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +151 -0
  44. package/lib/__templates__/taro/.cozeproj/scripts/init_env.sh +5 -0
  45. package/lib/__templates__/taro/.cozeproj/scripts/pack.sh +24 -0
  46. package/lib/__templates__/taro/README.md +751 -0
  47. package/lib/__templates__/taro/_gitignore +40 -0
  48. package/lib/__templates__/taro/_npmrc +18 -0
  49. package/lib/__templates__/taro/babel.config.js +12 -0
  50. package/lib/__templates__/taro/config/dev.ts +9 -0
  51. package/lib/__templates__/taro/config/index.ts +174 -0
  52. package/lib/__templates__/taro/config/prod.ts +35 -0
  53. package/lib/__templates__/taro/eslint.config.mjs +80 -0
  54. package/lib/__templates__/taro/key/private.appid.key +0 -0
  55. package/lib/__templates__/taro/package.json +97 -0
  56. package/lib/__templates__/taro/pnpm-lock.yaml +22706 -0
  57. package/lib/__templates__/taro/pnpm-workspace.yaml +2 -0
  58. package/lib/__templates__/taro/project.config.json +15 -0
  59. package/lib/__templates__/taro/server/nest-cli.json +10 -0
  60. package/lib/__templates__/taro/server/package.json +40 -0
  61. package/lib/__templates__/taro/server/src/app.controller.ts +23 -0
  62. package/lib/__templates__/taro/server/src/app.module.ts +10 -0
  63. package/lib/__templates__/taro/server/src/app.service.ts +8 -0
  64. package/lib/__templates__/taro/server/src/interceptors/http-status.interceptor.ts +23 -0
  65. package/lib/__templates__/taro/server/src/main.ts +49 -0
  66. package/lib/__templates__/taro/server/tsconfig.json +24 -0
  67. package/lib/__templates__/taro/src/app.config.ts +11 -0
  68. package/lib/__templates__/taro/src/app.css +52 -0
  69. package/lib/__templates__/taro/src/app.tsx +9 -0
  70. package/lib/__templates__/taro/src/index.html +39 -0
  71. package/lib/__templates__/taro/src/network.ts +39 -0
  72. package/lib/__templates__/taro/src/pages/index/index.config.ts +3 -0
  73. package/lib/__templates__/taro/src/pages/index/index.css +1 -0
  74. package/lib/__templates__/taro/src/pages/index/index.tsx +33 -0
  75. package/lib/__templates__/taro/src/presets/h5-container.tsx +17 -0
  76. package/lib/__templates__/taro/src/presets/h5-navbar.tsx +167 -0
  77. package/lib/__templates__/taro/src/presets/h5-styles.ts +88 -0
  78. package/lib/__templates__/taro/src/presets/index.tsx +18 -0
  79. package/lib/__templates__/taro/src/presets/wx-debug.ts +23 -0
  80. package/lib/__templates__/taro/stylelint.config.mjs +4 -0
  81. package/lib/__templates__/taro/template.config.js +68 -0
  82. package/lib/__templates__/taro/tsconfig.json +29 -0
  83. package/lib/__templates__/taro/types/global.d.ts +32 -0
  84. package/lib/__templates__/templates.json +43 -0
  85. package/lib/__templates__/vite/package.json +5 -1
  86. package/lib/__templates__/vite/pnpm-lock.yaml +146 -1659
  87. package/lib/__templates__/vite/src/main.ts +17 -47
  88. package/lib/__templates__/vite/template.config.js +49 -14
  89. package/lib/__templates__/vite/vite.config.ts +1 -0
  90. package/lib/cli.js +838 -130
  91. package/package.json +2 -1
@@ -6,6 +6,8 @@ import reactHooks from 'eslint-plugin-react-hooks';
6
6
  import regexp from 'eslint-plugin-regexp';
7
7
  import pluginImport from 'eslint-plugin-import';
8
8
  import fontawesome6 from '../eslint-plugins/fontawesome6/index.js';
9
+ import reanimated from '../eslint-plugins/reanimated/index.js';
10
+ import reactnative from '../eslint-plugins/react-native/index.js';
9
11
 
10
12
  export default [
11
13
  {
@@ -16,6 +18,8 @@ export default [
16
18
  'src/api/**', // 排除 src 下的自动生成 API
17
19
  '.expo/**', // 排除 Expo 自动生成的文件
18
20
  'tailwind.config.js', // 排除 Tailwind 配置文件
21
+ '**/*.d.ts',
22
+ 'eslint.config.*',
19
23
  ],
20
24
  },
21
25
  regexp.configs["flat/recommended"],
@@ -54,6 +58,8 @@ export default [
54
58
  plugins: {
55
59
  import: pluginImport,
56
60
  fontawesome6,
61
+ reanimated,
62
+ reactnative,
57
63
  },
58
64
  rules: {
59
65
  // 关闭代码风格规则
@@ -73,6 +79,20 @@ export default [
73
79
  'react/react-in-jsx-scope': 'off',
74
80
  'react/jsx-uses-react': 'off',
75
81
  'fontawesome6/valid-name': 'error',
82
+ 'reanimated/ban-mix-use': 'error',
83
+ // 禁止使用 via.placeholder.com 服务
84
+ 'no-restricted-syntax': [
85
+ 'error',
86
+ {
87
+ 'selector': 'Literal[value=/via\\.placeholder\\.com/]',
88
+ 'message': 'via.placeholder.com 服务不可用,禁止在代码中使用',
89
+ },
90
+ {
91
+ 'selector': 'TemplateLiteral > TemplateElement[value.raw=/via\\.placeholder\\.com/]',
92
+ 'message': 'via.placeholder.com 服务不可用,禁止在代码中使用',
93
+ },
94
+ ],
95
+ 'reactnative/wrap-horizontal-scrollview-inside-view': ['error'],
76
96
  },
77
97
  },
78
98
 
@@ -1,19 +1,21 @@
1
- import { useEffect, useState } from 'react';
1
+ import { createContext, Dispatch, ReactNode, SetStateAction, useContext, useEffect, useState } from 'react';
2
2
  import { ColorSchemeName, useColorScheme as useReactNativeColorScheme, Platform } from 'react-native';
3
3
 
4
- export function useColorScheme() {
4
+ const ColorSchemeContext = createContext<'light' | 'dark' | null | undefined>(null);
5
+
6
+ const ColorSchemeProvider = function ({ children }: { children?: ReactNode }) {
5
7
  const systemColorScheme = useReactNativeColorScheme();
6
- const [colorScheme, setColorScheme] = useState<ColorSchemeName>(systemColorScheme);
8
+ const [colorScheme, setColorScheme] = useState(systemColorScheme);
7
9
 
8
10
  useEffect(() => {
9
11
  setColorScheme(systemColorScheme);
10
- }, [systemColorScheme])
12
+ }, [systemColorScheme]);
11
13
 
12
14
  useEffect(() => {
13
15
  function handleMessage(e: MessageEvent<{ event: string; colorScheme: ColorSchemeName; } | undefined>) {
14
16
  if (e.data?.event === 'coze.workbench.colorScheme') {
15
17
  const cs = e.data.colorScheme;
16
- if (typeof cs === 'string') {
18
+ if (typeof cs === 'string' && typeof setColorScheme === 'function') {
17
19
  setColorScheme(cs);
18
20
  }
19
21
  }
@@ -28,7 +30,19 @@ export function useColorScheme() {
28
30
  window.removeEventListener('message', handleMessage, false);
29
31
  }
30
32
  }
31
- }, []);
33
+ }, [setColorScheme]);
34
+
35
+ return <ColorSchemeContext.Provider value={colorScheme}>
36
+ {children}
37
+ </ColorSchemeContext.Provider>
38
+ };
32
39
 
40
+ function useColorScheme() {
41
+ const colorScheme = useContext(ColorSchemeContext);
33
42
  return colorScheme;
34
43
  }
44
+
45
+ export {
46
+ ColorSchemeProvider,
47
+ useColorScheme,
48
+ }
@@ -0,0 +1,152 @@
1
+ /**
2
+ * 安全路由 Hook - 完全代替原生的 useRouter 和 useLocalSearchParams
3
+ *
4
+ * 提供的 Hook:
5
+ * - useSafeRouter: 代替 useRouter,包含所有路由方法,并对 push/replace/navigate/setParams 进行安全编码
6
+ * - useSafeSearchParams: 代替 useLocalSearchParams,获取路由参数
7
+ *
8
+ * 解决的问题:
9
+ * 1. URI 编解码不对称 - useLocalSearchParams 会自动解码,但 router.push 不会自动编码,
10
+ * 当参数包含 % 等特殊字符时会拿到错误的值
11
+ * 2. 类型丢失 - URL 参数全是 string,Number/Boolean 类型会丢失
12
+ * 3. 嵌套对象无法传递 - URL search params 不支持嵌套结构
13
+ *
14
+ * 解决方案:
15
+ * 采用 Payload 模式,将所有参数打包成 JSON 并 Base64 编码后传递,
16
+ * 接收时再解码还原,确保数据完整性和类型安全。
17
+ *
18
+ * 优点:
19
+ * 1. 自动处理所有特殊字符(如 %、&、=、中文、Emoji 等)
20
+ * 2. 保留数据类型(Number、Boolean 不会变成 String)
21
+ * 3. 支持嵌套对象和数组传递
22
+ * 4. 三端兼容(iOS、Android、Web)
23
+ *
24
+ * 使用方式:
25
+ * ```tsx
26
+ * // 发送端 - 使用 useSafeRouter 代替 useRouter
27
+ * const router = useSafeRouter();
28
+ * router.push('/detail', { id: 123, uri: 'file:///path/%40test.mp3' });
29
+ * router.replace('/home', { tab: 'settings' });
30
+ * router.navigate('/profile', { userId: 456 });
31
+ * router.back();
32
+ * if (router.canGoBack()) { ... }
33
+ * router.setParams({ updated: true });
34
+ *
35
+ * // 接收端 - 使用 useSafeSearchParams 代替 useLocalSearchParams
36
+ * const { id, uri } = useSafeSearchParams<{ id: number; uri: string }>();
37
+ * ```
38
+ */
39
+ import { useMemo } from 'react';
40
+ import { useRouter as useExpoRouter, useLocalSearchParams as useExpoParams } from 'expo-router';
41
+ import { Base64 } from 'js-base64';
42
+
43
+ const PAYLOAD_KEY = '__safeRouterPayload__';
44
+ const LOG_PREFIX = '[SafeRouter]';
45
+
46
+
47
+ const getCurrentParams = (rawParams: Record<string, string | string[]>): Record<string, unknown> => {
48
+ const payload = rawParams[PAYLOAD_KEY];
49
+ if (payload && typeof payload === 'string') {
50
+ const decoded = deserializeParams<Record<string, unknown>>(payload);
51
+ if (decoded && Object.keys(decoded).length > 0) {
52
+ return decoded;
53
+ }
54
+ }
55
+ const { [PAYLOAD_KEY]: _, ...rest } = rawParams;
56
+ return rest as Record<string, unknown>;
57
+ };
58
+
59
+ const serializeParams = (params: Record<string, unknown>): string => {
60
+ try {
61
+ const jsonStr = JSON.stringify(params);
62
+ return Base64.encode(jsonStr);
63
+ } catch (error) {
64
+ console.error(LOG_PREFIX, 'serialize failed:', error instanceof Error ? error.message : 'Unknown error');
65
+ return '';
66
+ }
67
+ };
68
+
69
+ const deserializeParams = <T = Record<string, unknown>>(
70
+ payload: string | string[] | undefined
71
+ ): T | null => {
72
+ if (!payload || typeof payload !== 'string') {
73
+ return null;
74
+ }
75
+ try {
76
+ const jsonStr = Base64.decode(payload);
77
+ return JSON.parse(jsonStr) as T;
78
+ } catch (error) {
79
+ console.error(LOG_PREFIX, 'deserialize failed:', error instanceof Error ? error.message : 'Unknown error');
80
+ return null;
81
+ }
82
+ };
83
+
84
+
85
+ /**
86
+ * 安全路由 Hook,用于页面跳转,代替 useRouter
87
+ * @returns 路由方法(继承 useRouter 所有方法,并对以下方法进行安全编码)
88
+ * - push(pathname, params) - 入栈新页面
89
+ * - replace(pathname, params) - 替换当前页面
90
+ * - navigate(pathname, params) - 智能跳转(已存在则返回,否则 push)
91
+ * - setParams(params) - 更新当前页面参数(合并现有参数)
92
+ */
93
+ export function useSafeRouter() {
94
+ const router = useExpoRouter();
95
+ const rawParams = useExpoParams<Record<string, string | string[]>>();
96
+
97
+ const push = (pathname: string, params: Record<string, unknown> = {}) => {
98
+ const encodedPayload = serializeParams(params);
99
+ router.push({
100
+ pathname: pathname as `/${string}`,
101
+ params: { [PAYLOAD_KEY]: encodedPayload },
102
+ });
103
+ };
104
+
105
+ const replace = (pathname: string, params: Record<string, unknown> = {}) => {
106
+ const encodedPayload = serializeParams(params);
107
+ router.replace({
108
+ pathname: pathname as `/${string}`,
109
+ params: { [PAYLOAD_KEY]: encodedPayload },
110
+ });
111
+ };
112
+
113
+ const navigate = (pathname: string, params: Record<string, unknown> = {}) => {
114
+ const encodedPayload = serializeParams(params);
115
+ router.navigate({
116
+ pathname: pathname as `/${string}`,
117
+ params: { [PAYLOAD_KEY]: encodedPayload },
118
+ });
119
+ };
120
+
121
+ const setParams = (params: Record<string, unknown>) => {
122
+ const currentParams = getCurrentParams(rawParams);
123
+ const mergedParams = { ...currentParams, ...params };
124
+ const encodedPayload = serializeParams(mergedParams);
125
+ router.setParams({ [PAYLOAD_KEY]: encodedPayload });
126
+ };
127
+
128
+ return {
129
+ ...router,
130
+ push,
131
+ replace,
132
+ navigate,
133
+ setParams,
134
+ };
135
+ }
136
+
137
+ /**
138
+ * 安全获取路由参数 Hook,用于接收方,代替 useLocalSearchParams
139
+ * 兼容两种跳转方式:
140
+ * 1. useSafeRouter 跳转 - 自动解码 Payload
141
+ * 2. 外部跳转(深链接、浏览器直接访问等)- 回退到原始参数
142
+ * @returns 解码后的参数对象,类型安全
143
+ */
144
+ export function useSafeSearchParams<T = Record<string, unknown>>(): T {
145
+ const rawParams = useExpoParams<Record<string, string | string[]>>();
146
+
147
+ const decodedParams = useMemo(() => {
148
+ return getCurrentParams(rawParams) as T;
149
+ }, [rawParams]);
150
+
151
+ return decodedParams;
152
+ }
@@ -26,6 +26,9 @@ config.resolver.blockList = [
26
26
  // 4. 通用规则
27
27
  /.*\/__tests__\/.*/, // 排除所有测试目录
28
28
  /.*\.git\/.*/, // 排除 Git 目录
29
+
30
+ // 5. pnpm 临时目录(避免 ENOENT 错误)
31
+ /.*node_modules\/\.pnpm\/.*_tmp_\d+.*/,
29
32
  ];
30
33
 
31
34
  const BACKEND_TARGET = 'http://localhost:9091';
@@ -15,36 +15,38 @@
15
15
  "preset": "jest-expo"
16
16
  },
17
17
  "dependencies": {
18
- "@expo/metro-runtime": "^6.1.2",
19
- "@expo/vector-icons": "^15.0.0",
20
- "@react-native-async-storage/async-storage": "^2.2.0",
21
- "@react-native-community/datetimepicker": "^8.5.0",
22
- "@react-native-community/slider": "^5.0.1",
23
- "@react-native-masked-view/masked-view": "^0.3.2",
24
- "@react-native-picker/picker": "^2.11.0",
18
+ "@expo/metro-runtime": "~6.1.2",
19
+ "@expo/vector-icons": "^15.0.3",
20
+ "@react-native-async-storage/async-storage": "2.2.0",
21
+ "@react-native-community/datetimepicker": "8.4.4",
22
+ "@react-native-community/slider": "5.0.1",
23
+ "@react-native-masked-view/masked-view": "0.3.2",
24
+ "@react-native-picker/picker": "2.11.1",
25
25
  "@react-navigation/bottom-tabs": "^7.2.0",
26
26
  "@react-navigation/native": "^7.0.14",
27
27
  "dayjs": "^1.11.19",
28
- "expo": "^54.0.7",
29
- "expo-auth-session": "^7.0.9",
30
- "expo-av": "~16.0.6",
31
- "expo-blur": "~15.0.6",
28
+ "expo": "54.0.33",
29
+ "expo-auth-session": "~7.0.10",
30
+ "expo-av": "~16.0.8",
31
+ "expo-blur": "~15.0.8",
32
32
  "expo-camera": "~17.0.10",
33
- "expo-constants": "~18.0.8",
34
- "expo-crypto": "^15.0.7",
35
- "expo-font": "~14.0.7",
36
- "expo-haptics": "~15.0.6",
37
- "expo-image-picker": "~17.0.7",
38
- "expo-linear-gradient": "~15.0.6",
39
- "expo-linking": "~8.0.7",
40
- "expo-location": "~19.0.7",
41
- "expo-image": "^3.0.11",
42
- "expo-router": "~6.0.0",
43
- "expo-splash-screen": "~31.0.8",
44
- "expo-status-bar": "~3.0.7",
45
- "expo-symbols": "~1.0.6",
33
+ "expo-constants": "~18.0.13",
34
+ "expo-crypto": "~15.0.8",
35
+ "expo-file-system": "~19.0.21",
36
+ "expo-font": "~14.0.11",
37
+ "expo-haptics": "~15.0.8",
38
+ "expo-image": "~3.0.11",
39
+ "expo-image-picker": "~17.0.10",
40
+ "expo-linear-gradient": "~15.0.8",
41
+ "expo-linking": "~8.0.11",
42
+ "expo-location": "~19.0.8",
43
+ "expo-router": "~6.0.23",
44
+ "expo-splash-screen": "~31.0.13",
45
+ "expo-status-bar": "~3.0.9",
46
+ "expo-symbols": "~1.0.8",
46
47
  "expo-system-ui": "~6.0.9",
47
48
  "expo-web-browser": "~15.0.10",
49
+ "js-base64": "^3.7.7",
48
50
  "react": "19.1.0",
49
51
  "react-dom": "19.1.0",
50
52
  "react-native": "0.81.5",
@@ -52,25 +54,26 @@
52
54
  "react-native-gesture-handler": "~2.28.0",
53
55
  "react-native-keyboard-aware-scroll-view": "^0.9.5",
54
56
  "react-native-modal-datetime-picker": "18.0.0",
55
- "react-native-reanimated": "~4.1.0",
57
+ "react-native-reanimated": "~4.1.1",
56
58
  "react-native-safe-area-context": "~5.6.0",
57
59
  "react-native-screens": "~4.16.0",
58
- "react-native-svg": "15.15.0",
60
+ "react-native-svg": "15.12.1",
59
61
  "react-native-toast-message": "^2.3.3",
60
- "react-native-web": "^0.21.2",
61
- "react-native-webview": "~13.15.0",
62
+ "react-native-web": "~0.21.0",
63
+ "react-native-webview": "13.15.0",
62
64
  "react-native-worklets": "0.5.1",
63
65
  "zod": "^4.2.1"
64
66
  },
65
67
  "devDependencies": {
66
68
  "@babel/core": "^7.25.2",
67
- "babel-plugin-module-resolver": "^5.0.2",
68
- "babel-preset-expo": "^54.0.9",
69
69
  "@eslint/js": "^9.27.0",
70
70
  "@types/jest": "^29.5.12",
71
71
  "@types/react": "~19.1.0",
72
72
  "@types/react-test-renderer": "19.1.0",
73
+ "babel-plugin-module-resolver": "^5.0.2",
74
+ "babel-preset-expo": "^54.0.9",
73
75
  "chalk": "^4.1.2",
76
+ "connect": "^3.7.0",
74
77
  "depcheck": "^1.4.7",
75
78
  "esbuild": "0.27.2",
76
79
  "eslint": "^9.39.2",
@@ -81,13 +84,12 @@
81
84
  "eslint-plugin-react-hooks": "^7.0.1",
82
85
  "eslint-plugin-regexp": "^2.10.0",
83
86
  "globals": "^16.1.0",
87
+ "http-proxy-middleware": "^3.0.5",
84
88
  "jest": "^29.2.1",
85
- "jest-expo": "~54.0.10",
89
+ "jest-expo": "~54.0.17",
86
90
  "react-test-renderer": "19.1.0",
87
91
  "tsx": "^4.21.0",
88
92
  "typescript": "^5.8.3",
89
- "typescript-eslint": "^8.32.1",
90
- "connect": "^3.7.0",
91
- "http-proxy-middleware": "^3.0.5"
93
+ "typescript-eslint": "^8.32.1"
92
94
  }
93
95
  }
@@ -15,10 +15,10 @@ export default function DemoPage() {
15
15
  >
16
16
  <Image
17
17
  style={styles.logo}
18
- source="https://lf-coze-web-cdn.coze.cn/obj/eden-cn/lm-lgvj/ljhwZthlaukjlkulzlp/coze-coding/expo/coze-loading.gif"
18
+ source="https://lf-coze-web-cdn.coze.cn/obj/eden-cn/lm-lgvj/ljhwZthlaukjlkulzlp/coze-coding/icon/coze-coding.gif"
19
19
  ></Image>
20
- <Text style={{...styles.title, color: theme.textPrimary}}>APP 开发中</Text>
21
- <Text style={{...styles.description, color: theme.textSecondary}}>即将为您呈现应用界面</Text>
20
+ <Text style={{...styles.title, color: theme.textPrimary}}>应用开发中</Text>
21
+ <Text style={{...styles.description, color: theme.textSecondary}}>请稍候,界面即将呈现</Text>
22
22
  </View>
23
23
  </Screen>
24
24
  );