Skip to content

Commit

Permalink
chore: cherry-pick #8532 (#8535)
Browse files Browse the repository at this point in the history
This PR cherry-picks #8532

Co-authored-by: Brian August Nguyen <brianacnguyen@gmail.com>
  • Loading branch information
github-actions[bot] and brianacnguyen authored Feb 6, 2024
1 parent e03d2c7 commit 8c1d175
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const BottomSheet = forwardRef<BottomSheetRef, BottomSheetProps>(

return (
<KeyboardAvoidingView
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
behavior={Platform.OS === 'ios' ? 'padding' : undefined}
keyboardVerticalOffset={
Platform.OS === 'ios' ? -screenBottomPadding : frameY
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ const BottomSheetDialog = forwardRef<
return (
<KeyboardAvoidingView
style={styles.base}
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
behavior={Platform.OS === 'ios' ? 'padding' : undefined}
keyboardVerticalOffset={
Platform.OS === 'ios' ? -screenBottomPadding : frameY
}
Expand Down

0 comments on commit 8c1d175

Please sign in to comment.