···1515import * as Toggle from '#/components/forms/Toggle'
1616import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
1717import {ChevronLeft_Stroke2_Corner0_Rounded as ChevronLeft} from '#/components/icons/Chevron'
1818+import {KeyboardPadding} from '#/components/KeyboardPadding'
1819import {Loader} from '#/components/Loader'
1920import {Text} from '#/components/Typography'
2021import {ReportDialogProps} from './types'
···221222 {submitting && <ButtonIcon icon={Loader} />}
222223 </Button>
223224 </View>
225225+ <KeyboardPadding />
224226 </View>
225227 )
226228}
+2
src/components/dialogs/MutedWords.tsx
···2828import {PageText_Stroke2_Corner0_Rounded as PageText} from '#/components/icons/PageText'
2929import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus'
3030import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times'
3131+import {KeyboardPadding} from '#/components/KeyboardPadding'
3132import {Loader} from '#/components/Loader'
3233import * as Prompt from '#/components/Prompt'
3334import {Text} from '#/components/Typography'
···256257 </View>
257258258259 <Dialog.Close />
260260+ <KeyboardPadding maxHeight={100} />
259261 </Dialog.ScrollableInner>
260262 )
261263}
+2-1
src/components/moderation/LabelsOnMeDialog.tsx
···1414import {atoms as a, useBreakpoints, useTheme} from '#/alf'
1515import {Button, ButtonIcon, ButtonText} from '#/components/Button'
1616import * as Dialog from '#/components/Dialog'
1717+import {KeyboardPadding} from '#/components/KeyboardPadding'
1718import {InlineLinkText} from '#/components/Link'
1819import {Text} from '#/components/Typography'
1920import {Divider} from '../Divider'
···108109 </View>
109110 </>
110111 )}
111111-112112 <Dialog.Close />
113113+ <KeyboardPadding />
113114 </Dialog.ScrollableInner>
114115 )
115116}
+2
src/view/com/composer/GifAltText.tsx
···2020import * as TextField from '#/components/forms/TextField'
2121import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check'
2222import {PlusSmall_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus'
2323+import {KeyboardPadding} from '#/components/KeyboardPadding'
2324import {Text} from '#/components/Typography'
2425import {GifEmbed} from '../util/post-embeds/GifEmbed'
2526import {AltTextReminder} from './photos/Gallery'
···180181 </View>
181182 </View>
182183 <Dialog.Close />
184184+ <KeyboardPadding />
183185 </Dialog.ScrollableInner>
184186 )
185187}
+2
src/view/com/modals/Modal.tsx
···5566import {useModalControls, useModals} from '#/state/modals'
77import {usePalette} from 'lib/hooks/usePalette'
88+import {KeyboardPadding} from '#/components/KeyboardPadding'
89import {createCustomBackdrop} from '../util/BottomSheetCustomBackdrop'
910import * as AddAppPassword from './AddAppPasswords'
1011import * as AltImageModal from './AltImage'
···146147 handleStyle={[styles.handle, pal.view]}
147148 onChange={onBottomSheetChange}>
148149 {element}
150150+ <KeyboardPadding />
149151 </BottomSheet>
150152 )
151153}