diff --git a/frontend/app/(auth)/sign-in.tsx b/frontend/app/(auth)/sign-in.tsx index 2b20512..8af9534 100644 --- a/frontend/app/(auth)/sign-in.tsx +++ b/frontend/app/(auth)/sign-in.tsx @@ -2,6 +2,8 @@ import React, { useEffect, useRef, useState } from "react"; import { ActivityIndicator, Animated, + KeyboardAvoidingView, + Platform, Pressable, StyleSheet, TextInput, @@ -66,6 +68,10 @@ export default function SignInScreen() { style={[styles.screen, { backgroundColor: colors.background }]} edges={[]} > + + ); } diff --git a/frontend/app/(auth)/sign-up.tsx b/frontend/app/(auth)/sign-up.tsx index 1b51c72..06d221b 100644 --- a/frontend/app/(auth)/sign-up.tsx +++ b/frontend/app/(auth)/sign-up.tsx @@ -2,6 +2,8 @@ import React, { useEffect, useRef, useState } from "react"; import { ActivityIndicator, Animated, + KeyboardAvoidingView, + Platform, Pressable, StyleSheet, TextInput, @@ -70,6 +72,10 @@ export default function SignUpScreen() { style={[styles.screen, { backgroundColor: colors.background }]} edges={[]} > + + ); } diff --git a/frontend/app/(tabs)/explore.tsx b/frontend/app/(tabs)/explore.tsx index a316612..3bfed92 100644 --- a/frontend/app/(tabs)/explore.tsx +++ b/frontend/app/(tabs)/explore.tsx @@ -10,6 +10,8 @@ import { Animated, InteractionManager, Keyboard, + KeyboardAvoidingView, + Platform, Pressable, RefreshControl, ScrollView, @@ -527,6 +529,10 @@ export default function ExploreScreen() { + + + )} + + {children} +