···11import {useState} from 'react'
22-import {TouchableOpacity, useWindowDimensions, View} from 'react-native'
22+import {TouchableOpacity, View} from 'react-native'
33import {msg} from '@lingui/core/macro'
44import {useLingui} from '@lingui/react'
55import {Plural, Trans} from '@lingui/react/macro'
···2323import {PlusSmall_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus'
2424import {GifEmbed} from '#/components/Post/Embed/ExternalEmbed/Gif'
2525import {Text} from '#/components/Typography'
2626-import {IS_ANDROID} from '#/env'
2726import {AltTextReminder} from './photos/Gallery'
28272928export function GifAltTextDialog({
···6968 const {_} = useLingui()
7069 const t = useTheme()
7170 const [altTextDraft, setAltTextDraft] = useState(altText || vendorAltText)
7272- const {height: minHeight} = useWindowDimensions()
7371 return (
7472 <>
7573 <TouchableOpacity
···110108 onClose={() => {
111109 onSubmit(altTextDraft)
112110 }}
113113- nativeOptions={{minHeight}}>
111111+ nativeOptions={{fullHeight: true}}>
114112 <Dialog.Handle />
115113 <AltTextInner
116114 vendorAltText={vendorAltText}
···226224 </View>
227225 </View>
228226 <Dialog.Close />
229229- {/* Maybe fix this later -h */}
230230- {IS_ANDROID ? <View style={{height: 300}} /> : null}
231227 </Dialog.ScrollableInner>
232228 )
233229}
+1-1
src/view/com/composer/drafts/DraftsListDialog.tsx
···167167 )
168168169169 return (
170170- <Dialog.Outer control={control}>
170170+ <Dialog.Outer control={control} nativeOptions={{fullHeight: true}}>
171171 {/* We really really need to figure out a nice, consistent API for doing a header cross-platform -sfn */}
172172 {IS_NATIVE && header}
173173 <Dialog.InnerFlatList