Skip to content

Commit d94715f

Browse files
authored
Merge pull request #14392 from rawalyogendra/fix-ios-button
Fix: iOS button obstructed by keyboard
2 parents 606e367 + 6a1ae16 commit d94715f

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test:e2e": "node tests/e2e/testRunner.js --development"
4242
},
4343
"dependencies": {
44-
"@expensify/react-native-web": "0.18.9",
44+
"@expensify/react-native-web": "0.18.10",
4545
"@formatjs/intl-getcanonicallocales": "^1.5.8",
4646
"@formatjs/intl-locale": "^2.4.21",
4747
"@formatjs/intl-numberformat": "^6.2.5",

src/components/ScreenWrapper/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class ScreenWrapper extends React.Component {
8989
paddingStyle,
9090
]}
9191
>
92-
<KeyboardAvoidingView style={[styles.w100, styles.h100]} behavior={this.props.keyboardAvoidingViewBehavior}>
92+
<KeyboardAvoidingView style={[styles.w100, styles.h100, {maxHeight: this.props.windowHeight}]} behavior={this.props.keyboardAvoidingViewBehavior}>
9393
<HeaderGap />
9494
{// If props.children is a function, call it to provide the insets to the children.
9595
_.isFunction(this.props.children)

0 commit comments

Comments
 (0)