fix stuff

This commit is contained in:
2025-03-12 14:13:19 -05:00
parent 7e4978f0e0
commit c503e4fb94
6 changed files with 286 additions and 289 deletions

View File

@ -81,6 +81,7 @@ const Auth = () => {
<ThemedView style={styles.verticallySpaced}>
<ThemedTextInput
height={60}
fontSize={24}
onChangeText={(text) => setFullName(text)}
value={full_name}
@ -90,6 +91,7 @@ const Auth = () => {
<ThemedView style={[styles.verticallySpaced]}>
<ThemedTextInput
height={60}
fontSize={24}
onChangeText={(text) => setEmail(text)}
value={email}
@ -99,6 +101,7 @@ const Auth = () => {
<ThemedView style={styles.verticallySpaced}>
<ThemedTextInput
height={60}
fontSize={24}
onChangeText={(text) => setPassword(text)}
value={password}

View File

@ -55,6 +55,8 @@ const ParallaxScrollView = ({
scrollEventThrottle={16}
scrollIndicatorInsets={{ bottom }}
contentContainerStyle={{ paddingBottom: bottom }}
keyboardShouldPersistTaps='handled'
keyboardDismissMode='interactive'
>
<Animated.View
style={[

View File

@ -43,6 +43,7 @@ const ThemedTextInput: React.FC<ThemedTextInputProps> = ({
color: Colors[scheme].text,
backgroundColor: Colors[scheme].background,
fontSize,
lineHeight: fontSize * 1.5,
},
style,
]}