We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4ae52a commit 4302b97Copy full SHA for 4302b97
lib/KeyboardAwareMixin.js
@@ -76,7 +76,7 @@ const KeyboardAwareMixin = {
76
},
77
78
resetKeyboardSpace: function () {
79
- const keyboardSpace: number = (this.props.viewIsInsideTabBar) ? _KAM_DEFAULT_TAB_BAR_HEIGHT : 0
+ const keyboardSpace: number = (this.props.viewIsInsideTabBar) ? _KAM_DEFAULT_TAB_BAR_HEIGHT + this.props.extraScrollHeight : this.props.extraScrollHeight
80
this.setState({keyboardSpace})
81
// Reset scroll position after keyboard dismissal
82
if (this.resetCoords) {
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-native-keyboard-aware-scroll-view",
3
- "version": "0.2.2",
+ "version": "0.2.3",
4
"description": "A React Native ScrollView component that resizes when the keyboard appears.",
5
"main": "index.js",
6
"scripts": {
0 commit comments