You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
458 B
23 lines
458 B
/** |
|
* 首页 - 游戏大厅 |
|
* |
|
* 重构自 xinyong-web 项目的首页 |
|
* 支持浅色/深色主题,包含轮播图、分类菜单、游戏大厅等功能 |
|
*/ |
|
|
|
import { Stack } from 'expo-router'; |
|
import HomeScreen from '@/pages/HomeScreen'; |
|
|
|
export default function TabOneScreen() { |
|
return ( |
|
<> |
|
<Stack.Screen |
|
options={{ |
|
title: '首页', |
|
headerShown: false, |
|
}} |
|
/> |
|
<HomeScreen /> |
|
</> |
|
); |
|
}
|
|
|