diff options
author | Hailey <me@haileyok.com> | 2024-05-23 10:01:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 10:01:31 -0700 |
commit | 5217876f241a991e55d789cd5faa8d8ab1890d1b (patch) | |
tree | 274a75717f646acb3a304bdac1710d7b5ea0e579 /src/components/dialogs/MutedWords.tsx | |
parent | 3d1ed04a70aff9c08b713392ac0a4d3856ae16e9 (diff) | |
download | voidsky-5217876f241a991e55d789cd5faa8d8ab1890d1b.tar.zst |
Add padding to dialogs when keyboard is open on Android (#4182)
* add keyboard padding to android dialogs * missing `keyboardDismissMode` for `ScrollableInner` * add to `MutedWords` * add to `LabelsOnMe`
Diffstat (limited to 'src/components/dialogs/MutedWords.tsx')
-rw-r--r-- | src/components/dialogs/MutedWords.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/dialogs/MutedWords.tsx b/src/components/dialogs/MutedWords.tsx index 534263422..dea819412 100644 --- a/src/components/dialogs/MutedWords.tsx +++ b/src/components/dialogs/MutedWords.tsx @@ -28,6 +28,7 @@ import {Hashtag_Stroke2_Corner0_Rounded as Hashtag} from '#/components/icons/Has import {PageText_Stroke2_Corner0_Rounded as PageText} from '#/components/icons/PageText' import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times' +import {KeyboardPadding} from '#/components/KeyboardPadding' import {Loader} from '#/components/Loader' import * as Prompt from '#/components/Prompt' import {Text} from '#/components/Typography' @@ -256,6 +257,7 @@ function MutedWordsInner() { </View> <Dialog.Close /> + <KeyboardPadding maxHeight={100} /> </Dialog.ScrollableInner> ) } |