fix stuff
This commit is contained in:
@ -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}
|
||||
|
@ -55,6 +55,8 @@ const ParallaxScrollView = ({
|
||||
scrollEventThrottle={16}
|
||||
scrollIndicatorInsets={{ bottom }}
|
||||
contentContainerStyle={{ paddingBottom: bottom }}
|
||||
keyboardShouldPersistTaps='handled'
|
||||
keyboardDismissMode='interactive'
|
||||
>
|
||||
<Animated.View
|
||||
style={[
|
||||
|
@ -43,6 +43,7 @@ const ThemedTextInput: React.FC<ThemedTextInputProps> = ({
|
||||
color: Colors[scheme].text,
|
||||
backgroundColor: Colors[scheme].background,
|
||||
fontSize,
|
||||
lineHeight: fontSize * 1.5,
|
||||
},
|
||||
style,
|
||||
]}
|
||||
|
Reference in New Issue
Block a user