Commit 66171304 authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

aaa

parent 4af89081
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -128,6 +128,21 @@ const MainLayout = () => {
          statusBarColor: LIGHT_THEME.color.primary,
        }}
      />
      <Stack.Screen
        name="routes/generate_manual_route"
        options={{
          title: t("generateRouteMapScreen.title"),
          statusBarColor: LIGHT_THEME.color.primary,
          headerStyle: {
            backgroundColor: LIGHT_THEME.color.primary,
          },
          headerTitleStyle: {
            color: LIGHT_THEME.color.white,
          },
          headerTitleAlign: "center",
          headerTintColor: LIGHT_THEME.color.white,
        }}
      />
      <Stack.Screen
        name="routes/generate_route_form"
        options={{
+5 −0
Original line number Diff line number Diff line
import { GenerateManualRoute } from "../../src/route/screens/generate_manual_route_screen";

export const GenerateManualRoutePage = () => {
  return <GenerateManualRoute />;
};