【发布时间】:2020-09-17 17:42:45
【问题描述】:
直到输入一切正常。然而,在开始输入页面后向下滚动(移动)。无论我做什么,我都无法解决这个问题......
<ImageBackground
source={bgSrc}
style={styles.background}
resizeMode="cover">
<StatusBar hidden={true} />
<KeyboardAwareScrollView
showsVerticalScrollIndicator={false}
enableOnAndroid
>
{screenToShow}
</KeyboardAwareScrollView>
</ImageBackground>
const styles = StyleSheet.create({
container: {
width: '100%',
height: height,
backgroundColor: '#555',
},
background: {
flex: 1,
width: null,
height: null,
justifyContent: 'center',
alignItems: 'center'
}
});
before typing, it's looking perfect
输入密码字段后,页面会向下移动,如您所见:
【问题讨论】:
标签: react-native keyboard