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/view/com/composer/GifAltText.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/view/com/composer/GifAltText.tsx')
-rw-r--r-- | src/view/com/composer/GifAltText.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/view/com/composer/GifAltText.tsx b/src/view/com/composer/GifAltText.tsx index b1f10bf2f..cdef13352 100644 --- a/src/view/com/composer/GifAltText.tsx +++ b/src/view/com/composer/GifAltText.tsx @@ -20,6 +20,7 @@ import * as Dialog from '#/components/Dialog' import * as TextField from '#/components/forms/TextField' import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' import {PlusSmall_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' +import {KeyboardPadding} from '#/components/KeyboardPadding' import {Text} from '#/components/Typography' import {GifEmbed} from '../util/post-embeds/GifEmbed' import {AltTextReminder} from './photos/Gallery' @@ -180,6 +181,7 @@ function AltTextInner({ </View> </View> <Dialog.Close /> + <KeyboardPadding /> </Dialog.ScrollableInner> ) } |