Commit 30670e99 authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se crearon las rutas para acceder a las pantallas de selección de intereses

parent eab7d9c2
Loading
Loading
Loading
Loading
+22 −1
Original line number Diff line number Diff line
import { Stack } from "expo-router";
import { LIGHT_THEME } from "../../src/common/constants/theme";

export default function Layout() {
    return (
        <Stack>
        <Stack
            screenOptions={{
                headerStyle: {
                    backgroundColor: LIGHT_THEME.color.primary,
                  },
                  headerTitleStyle: {
                    color: LIGHT_THEME.color.white,
                  },
                  headerTitleAlign: "center",
                  headerTintColor: LIGHT_THEME.color.white,
                  statusBarColor: LIGHT_THEME.color.primary,
            }}
        >
            <Stack.Screen name="edit" options={{
                title: "Edit Profile",
                headerShown: true,
            }}/>
            <Stack.Screen name="interests" options={{
                title: "Interests",
                headerShown: true,
            }}/>
            <Stack.Screen name="set_up" options={{
                title: "Set Up Profile",
                headerShown: true,
            }}/>
        </Stack>
    );
}
 No newline at end of file