Files
digital-pilates/app/nutrition/_layout.tsx
richarjiang 260546ff46 feat: 新增营养记录页面及相关组件
- 在应用中新增营养记录页面,展示用户的饮食记录
- 引入营养记录卡片组件,优化记录展示效果
- 更新路由常量,添加营养记录相关路径
- 修改布局文件,整合营养记录功能
- 优化数据加载逻辑,支持分页和日期过滤
2025-08-19 11:34:50 +08:00

10 lines
202 B
TypeScript

import { Stack } from 'expo-router';
export default function NutritionLayout() {
return (
<Stack screenOptions={{ headerShown: false }}>
<Stack.Screen name="records" />
</Stack>
);
}