添加注册和账户信息页面,更新登录页面,修改样式和国际化文本,调整导航逻辑,更新 package.json 以支持 Node 22.12.0,替换 logo 图片。

This commit is contained in:
wuzhenyu
2025-08-29 17:33:18 +08:00
parent 1e1f06cb08
commit 579aee6efc
11 changed files with 707 additions and 106 deletions

16
App.jsx
View File

@@ -23,10 +23,12 @@ import { AuthProvider, useContextHook } from './components/AuthContext/index';
import Login from '@/views/Login/index';
import Signup from '@/views/Signup/index';
import Guide from '@/views/Guide/index';
import HomeIndex from '@/views/Home/Index/index';
import HomeInventory from '@/views/Home/Inventory/index';
import HomeProfile from '@/views/Home/Profile/index';
import AccountInfo from '@/views/AccountInfo/index';
const Tab = createBottomTabNavigator();
@@ -107,6 +109,13 @@ function RootStack() {
}}
component={Login}
/>
<Stack.Screen
name="Signup"
options={{
headerShown: false,
}}
component={Signup}
/>
<Stack.Screen
name="Home"
component={HomeTabs}
@@ -114,6 +123,13 @@ function RootStack() {
headerShown: false,
}}
/>
<Stack.Screen
name="AccountInfo"
component={AccountInfo}
options={{
headerShown: false,
}}
/>
</Stack.Navigator>
);
}