We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 02637c1 + 4f7dfa2 commit ea6aac1Copy full SHA for ea6aac1
src/components/ScreenWrapper/index.js
@@ -51,7 +51,7 @@ const ScreenWrapper = React.forwardRef(
51
const navigation = useNavigation();
52
const [didScreenTransitionEnd, setDidScreenTransitionEnd] = useState(false);
53
const maxHeight = shouldEnableMaxHeight ? windowHeight : undefined;
54
- const minHeight = shouldEnableMinHeight ? initialHeight : undefined;
+ const minHeight = shouldEnableMinHeight && !Browser.isSafari() ? initialHeight : undefined;
55
const isKeyboardShown = lodashGet(keyboardState, 'isKeyboardShown', false);
56
57
const isKeyboardShownRef = useRef();
0 commit comments