react-native-keyboard-aware-scroll-view
react-native-keyboard-aware-scroll-view copied to clipboard
[Bug] KeyboardAwareScrollView is not work well in Android only
Issue
When focus on Textinput in Android, scrolloffset shivers vertically and the focused textinput is overlapped with keyboard! Anyone have fixed this bug? IOS is okay.
Code
<KeyboardAwareScrollView
bounces={false}
extraScrollHeight={38}
enableOnAndroid
contentContainerStyle={{
flexGrow: 1,
}}
bounces={false}
onScrollBeginDrag={() => Keyboard.dismiss()}
// automaticallyAdjustKeyboardInsets
>
<Pressable
style={[
Layout.fill,
{ backgroundColor: Colors.background, paddingBottom: 300 },
]}
disabled={portfolioUpdating}
onPress={() => {
Keyboard.dismiss()
}}>
<View style={styles.inputItemCard}>
<View style={Layout.row}>
<TextOneLine style={{ fontFamily: 'NotoSansKR-Bold' }}>
이름
</TextOneLine>
</View>
<TextInput
multiline={true}
numberOfLines={1}
keyboardType="default"
placeholder="이름을 입력해주세요."
/>
</View>
<View style={styles.inputItemCard}>
<View style={Layout.row}>
<TextOneLine style={{ fontFamily: 'NotoSansKR-Bold' }}>
설명1
</TextOneLine>
</View>
<TextInput
onChangeText={text => {
}}
/>
</View>
<View style={styles.inputItemCard}>
<View style={Layout.row}>
<TextOneLine style={{ fontFamily: 'NotoSansKR-Bold' }}>
이름
</TextOneLine>
</View>
<TextInput
onChangeText={text => {}}
/>
</View>
</Pressable>
</KeyboardAwareScrollView>
Same, I'm on Expo 50
same issue here
Which version of Expo are you using? I'm on SDK 50, and I think that might be the issue
same issue did someone found the solution?
same issue, any update?
the same issue