Skip to content

Commit

Permalink
Merge pull request #3448 from tloncorp/po/land-1796-fix-issue-with-ch…
Browse files Browse the repository at this point in the history
…annel-view-on-android

android: fix issue with channel view 'wiping away' on keyboard dismiss
  • Loading branch information
patosullivan authored Apr 23, 2024
2 parents e73403d + bff7da5 commit 9b9359c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/src/components/Channel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ export function Channel({
showSpinner={isLoadingPosts}
/>
<KeyboardAvoidingView
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
keyboardVerticalOffset={70}
behavior={Platform.OS === 'ios' ? 'padding' : 'position'}
style={{ flex: 1 }}
contentContainerStyle={{ flex: 1 }}
>
<YStack flex={1}>
{!posts || !contacts ? (
Expand Down

0 comments on commit 9b9359c

Please sign in to comment.