feat: 添加挑战页面和相关功能

- 在布局中新增挑战页面的导航
- 在首页中添加挑战计划卡片,支持用户点击跳转
- 更新登录页面的标题样式,调整字体粗细
- 集成 Redux 状态管理,新增挑战相关的 reducer
This commit is contained in:
2025-08-12 22:54:23 +08:00
parent 00ddec25c5
commit 5f05abc3d5
9 changed files with 659 additions and 1 deletions

13
app/challenge/_layout.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { Stack } from 'expo-router';
import React from 'react';
export default function ChallengeLayout() {
return (
<Stack screenOptions={{ headerShown: false }}>
<Stack.Screen name="index" />
<Stack.Screen name="day" />
</Stack>
);
}