diff --git a/node_modules/react-native-ui-lib/lib/components/Keyboard/KeyboardInput/KeyboardAccessoryView.js b/node_modules/react-native-ui-lib/lib/components/Keyboard/KeyboardInput/KeyboardAccessoryView.js index cfe1d35..a191c82 100644 --- a/node_modules/react-native-ui-lib/lib/components/Keyboard/KeyboardInput/KeyboardAccessoryView.js +++ b/node_modules/react-native-ui-lib/lib/components/Keyboard/KeyboardInput/KeyboardAccessoryView.js @@ -123,7 +123,12 @@ class KeyboardAccessoryView extends Component { * Whether or not to handle SafeArea * default: true */ - useSafeArea: PropTypes.bool + useSafeArea: PropTypes.bool, + + onHeightChange: PropTypes.shape({ + height: PropTypes.number, + keyboardHeight: PropTypes.number + }) }; static iosScrollBehaviors = IOS_SCROLL_BEHAVIORS; @@ -271,6 +276,7 @@ class KeyboardAccessoryView extends Component { addBottomView={addBottomView} bottomViewColor={this.props.bottomViewColor} allowHitsOutsideBounds={allowHitsOutsideBounds} + onHeightChange={this.props.onHeightChange} > {renderContent && renderContent()}