Skip to content

Commit

Permalink
fix: android KeyboardAwareScrollView #258
Browse files Browse the repository at this point in the history
  • Loading branch information
Bibazavr committed Jul 8, 2024
1 parent 624e508 commit 13d6db0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/KeyboardAware/src/KeyboardAwareScrollView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ const KeyboardAwareScrollView = ({
{...rest}>
{children}
</Animated.ScrollView>
<View ref={bottomRef}>{BottomComponent}</View>
<View ref={bottomRef} collapsable={false}>
{BottomComponent}
</View>
<Animated.View
style={[
Platform.OS === 'ios'
Expand Down

0 comments on commit 13d6db0

Please sign in to comment.