Prevent keyboard from blocking alt image modal (#531)
* Prevent keyboard from blocking alt image modal * Tune padding of altimage modal on desktop web --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>zio/stable
parent
3ef7504f91
commit
b00365c196
|
@ -12,7 +12,7 @@ import LinearGradient from 'react-native-linear-gradient'
|
||||||
import {useStores} from 'state/index'
|
import {useStores} from 'state/index'
|
||||||
import {isDesktopWeb} from 'platform/detection'
|
import {isDesktopWeb} from 'platform/detection'
|
||||||
|
|
||||||
export const snapPoints = [330]
|
export const snapPoints = ['80%']
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
onAltTextSet: (altText?: string | undefined) => void
|
onAltTextSet: (altText?: string | undefined) => void
|
||||||
|
@ -34,7 +34,9 @@ export function Component({onAltTextSet}: Props) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View testID="altTextImageModal" style={[pal.view, styles.container]}>
|
<View
|
||||||
|
testID="altTextImageModal"
|
||||||
|
style={[pal.view, styles.container, s.flex1]}>
|
||||||
<Text style={[styles.title, pal.text]}>Add alt text</Text>
|
<Text style={[styles.title, pal.text]}>Add alt text</Text>
|
||||||
<TextInput
|
<TextInput
|
||||||
testID="altTextImageInput"
|
testID="altTextImageInput"
|
||||||
|
@ -73,9 +75,9 @@ export function Component({onAltTextSet}: Props) {
|
||||||
const styles = StyleSheet.create({
|
const styles = StyleSheet.create({
|
||||||
container: {
|
container: {
|
||||||
gap: 18,
|
gap: 18,
|
||||||
bottom: 0,
|
paddingVertical: isDesktopWeb ? 0 : 18,
|
||||||
paddingVertical: 18,
|
|
||||||
paddingHorizontal: isDesktopWeb ? 0 : 12,
|
paddingHorizontal: isDesktopWeb ? 0 : 12,
|
||||||
|
height: '100%',
|
||||||
width: '100%',
|
width: '100%',
|
||||||
},
|
},
|
||||||
title: {
|
title: {
|
||||||
|
|
Loading…
Reference in New Issue