secullum-react-native-ui 4.15.2-beta.5 → 4.15.2-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -70,7 +70,7 @@ class KeyboardAvoidingView extends React.Component {
|
|
|
70
70
|
this.keyboardDidHideSubscription.remove();
|
|
71
71
|
}
|
|
72
72
|
render() {
|
|
73
|
-
const { refreshControl, scrollEnabled, onScroll, children, keyBoardShow,
|
|
73
|
+
const { refreshControl, scrollEnabled, onScroll, children, keyBoardShow, extraWindowHeight } = this.props;
|
|
74
74
|
const { keyboardHeight } = this.state;
|
|
75
75
|
// Android devices with notch will report less `availableHeight` than it should
|
|
76
76
|
// That's because of this: https://github.com/facebook/react-native/issues/23693
|
|
@@ -78,7 +78,7 @@ class KeyboardAvoidingView extends React.Component {
|
|
|
78
78
|
const availableHeight = react_native_1.Dimensions.get('window').height - keyboardHeight - extraWindowHeight;
|
|
79
79
|
return (React.createElement(react_native_1.View, { style: !keyBoardShow && { flex: 1 } },
|
|
80
80
|
React.createElement(react_native_1.ScrollView, { contentContainerStyle: {
|
|
81
|
-
paddingBottom: keyboardHeight
|
|
81
|
+
paddingBottom: keyboardHeight
|
|
82
82
|
}, ref: this.scrollViewRef,
|
|
83
83
|
// @ts-ignore: O react-native não tem auto, mas o react-native-web aceita
|
|
84
84
|
refreshControl: refreshControl, scrollEnabled: scrollEnabled, onScroll: (e) => {
|