feature:基本功能

This commit is contained in:
吕新雨
2026-01-29 19:09:36 +08:00
parent c1a433a469
commit 0dd84b1873
47 changed files with 2978 additions and 219 deletions

View File

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