Loading mobile/app/_layout.tsx +21 −0 Original line number Diff line number Diff line Loading @@ -102,6 +102,27 @@ const MainLayout = () => { statusBarColor: LIGHT_THEME.color.primary, }} /> <Stack.Screen name="auth/reset_password" options={{ title: "Reset Password", 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="auth/reset_password_error" options={{ headerShown: false, }} /> </Stack> ); }; mobile/app/auth/reset_password.tsx 0 → 100644 +7 −0 Original line number Diff line number Diff line import { ResetPasswordPage } from "../../src/auth/pages/reset_password_page"; export default function ResetPassword() { return ( <ResetPasswordPage /> ); } No newline at end of file mobile/app/auth/reset_password_error.tsx 0 → 100644 +5 −0 Original line number Diff line number Diff line export default function ResetPasswordError() { return ( <ResetPasswordError /> ); }; No newline at end of file Loading
mobile/app/_layout.tsx +21 −0 Original line number Diff line number Diff line Loading @@ -102,6 +102,27 @@ const MainLayout = () => { statusBarColor: LIGHT_THEME.color.primary, }} /> <Stack.Screen name="auth/reset_password" options={{ title: "Reset Password", 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="auth/reset_password_error" options={{ headerShown: false, }} /> </Stack> ); };
mobile/app/auth/reset_password.tsx 0 → 100644 +7 −0 Original line number Diff line number Diff line import { ResetPasswordPage } from "../../src/auth/pages/reset_password_page"; export default function ResetPassword() { return ( <ResetPasswordPage /> ); } No newline at end of file
mobile/app/auth/reset_password_error.tsx 0 → 100644 +5 −0 Original line number Diff line number Diff line export default function ResetPasswordError() { return ( <ResetPasswordError /> ); }; No newline at end of file