diff --git a/src/components/Modal.tsx b/src/components/Modal.tsx index 3c66c885b3..35da95e794 100644 --- a/src/components/Modal.tsx +++ b/src/components/Modal.tsx @@ -1,5 +1,11 @@ import * as React from 'react'; -import { Animated, Easing, StyleSheet, Pressable, View } from 'react-native'; +import { + Animated, + Easing, + KeyboardAvoidingView, + StyleSheet, + Pressable, +} from 'react-native'; import type { StyleProp, ViewStyle } from 'react-native'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; @@ -206,7 +212,16 @@ function Modal({ ]} testID={`${testID}-backdrop`} /> - {children} - + ); }