Вот как я обработал скрытие ввода текста, когда появляются клавиатура и проблема с прокруткой. Я использовал эту библиотеку, но не получил желаемого результата. Я посмотрел на исходный код и нашел собственное решение с использованием нативных компонентов.
Вот мой метод рендеринга: обратите внимание, что я создал несколько компонентов-оболочек, таких как Button и CustomizedTextInput, но свойства ScrollView должны дать вам то, что вам нужно.
<ScrollView keyboardShouldPersistTaps="handled"
showsVerticalScrollIndicator={false}>
{this.renderImage(styles)}
<View style={styles.container}>
<View style={styles.buttons}>
<TouchableOpacity
style={[styles.button,social,{justifyContent:'center'}]}>
<Icon name={'logo-facebook'} size={25} style={[awesome,hero,accentColor,center,{alignSelf:'center'}]}/>
</TouchableOpacity>
<TouchableOpacity
style={[styles.button,social,{justifyContent:'center'}]}
>
<Icon name={'logo-twitter'} size={25} style={[awesome,hero,accentColor,center,{alignSelf:'center'}]}/>
</TouchableOpacity>
<TouchableOpacity
style={[styles.button,social,{justifyContent:'center'}]} >
<Icon name={'logo-google'} size={25} style={[awesome,hero,accentColor,center,{alignSelf:'center'}]}/>
</TouchableOpacity>
</View>
<CustomizedTextInput
placeholder='Username'
autoCapitalize="none"
autoCorrect={false}
backgroundColor={Theme[this.props.theme].colors.control.background}
borderColor={Theme[this.props.theme].colors.border.base}
borderRadius={24}
placeholderTextColor={baseColor.color}
value={this.state.username}
onChangeText={val => this.onChangeText('username', val)}
/>
<CustomizedTextInput
placeholder='Password'
autoCapitalize="none"
autoCorrect={false}
backgroundColor={Theme[this.props.theme].colors.control.background}
borderColor={Theme[this.props.theme].colors.border.base}
borderRadius={24}
placeholderTextColor={baseColor.color}
value={this.state.password}
onChangeText={val => this.onChangeText('password', val)}
/>
<Button
text='LOGIN'
borderRadius={24}
color={Theme[this.props.theme].colors.gradients.base[0]}
style={[{width: 300},{height:50},baseColor,styles.save]}
textStyle={[inverseColor]}
onPress={this.signIn}
/>
<View style={styles.footer}>
<View style={styles.textRow}>
<Text style={[primary3, baseColor]}>Don’t have an account? </Text>
<TouchableOpacity
onPress={()=>this.props.navigation.navigate('auth.signup')}
style={[clear]} >
<Text style={[header6, baseColor]}>Sign up now</Text>
</TouchableOpacity>
</View>
</View>
</View>
</ScrollView>