feat: add expo mobile application source code
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { Stack } from 'expo-router';
|
||||
import { useAppTheme } from '../../context/ThemeContext';
|
||||
|
||||
export default function AuthLayout() {
|
||||
const { colors } = useAppTheme();
|
||||
|
||||
return (
|
||||
<Stack
|
||||
screenOptions={{
|
||||
headerShown: false,
|
||||
contentStyle: { backgroundColor: colors.background },
|
||||
animation: 'fade',
|
||||
}}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user