basic layout created and welcome onboarding screen implemented

This commit is contained in:
Sanidhya Kumar Verma
2024-08-29 08:29:58 +00:00
committed by GitHub
parent a72a83ebe3
commit 77030fd4c2
16 changed files with 481 additions and 12 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Stack } from "expo-router";
const AuthLayout = () => {
return (
<Stack>
<Stack.Screen name="welcome" options={{ headerShown: false }} />
<Stack.Screen name="sign-up" options={{ headerShown: false }} />
<Stack.Screen name="sign-in" options={{ headerShown: false }} />
</Stack>
);
};
export default AuthLayout;