17 lines
357 B
TypeScript
17 lines
357 B
TypeScript
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',
|
|
}}
|
|
/>
|
|
);
|
|
}
|