diff --git a/apps/mobile/src/app/(auth)/forgot-password.tsx b/apps/mobile/src/app/(auth)/forgot-password.tsx index 96b2b1a..6c9f48f 100644 --- a/apps/mobile/src/app/(auth)/forgot-password.tsx +++ b/apps/mobile/src/app/(auth)/forgot-password.tsx @@ -32,7 +32,7 @@ export default function ForgotPasswordScreen() { if (sent) { return ( - + {t("auth.forgotSentTitle")} {t("auth.forgotSentBody")} @@ -44,7 +44,7 @@ export default function ForgotPasswordScreen() { } return ( - + {t("auth.forgotTitle")} {t("auth.forgotBody")} + {BRAND.name} Hushållets mat-OS diff --git a/apps/mobile/src/app/(auth)/register.tsx b/apps/mobile/src/app/(auth)/register.tsx index f29b877..b191476 100644 --- a/apps/mobile/src/app/(auth)/register.tsx +++ b/apps/mobile/src/app/(auth)/register.tsx @@ -76,7 +76,7 @@ export default function RegisterScreen() { }; return ( - + {t("auth.register")} {t("auth.trialNote")} diff --git a/apps/mobile/src/app/(auth)/reset-password.tsx b/apps/mobile/src/app/(auth)/reset-password.tsx index 4a5bfd6..35e5ba5 100644 --- a/apps/mobile/src/app/(auth)/reset-password.tsx +++ b/apps/mobile/src/app/(auth)/reset-password.tsx @@ -38,7 +38,7 @@ export default function ResetPasswordScreen() { if (done) { return ( - + {t("auth.resetDoneTitle")} {t("auth.resetDoneBody")} @@ -48,7 +48,7 @@ export default function ResetPasswordScreen() { } return ( - + {t("auth.resetTitle")} {t("auth.resetBody")} {!params.token && ( diff --git a/apps/mobile/src/components/ui.tsx b/apps/mobile/src/components/ui.tsx index 964e792..986c872 100644 --- a/apps/mobile/src/components/ui.tsx +++ b/apps/mobile/src/components/ui.tsx @@ -1,6 +1,8 @@ import type { PropsWithChildren, ReactNode } from "react"; import { ActivityIndicator, + KeyboardAvoidingView, + Platform, Pressable, ScrollView, StyleSheet, @@ -25,6 +27,7 @@ export function Screen({ {children} @@ -33,7 +36,12 @@ export function Screen({ ); return ( - {content} + + {content} + ); }