UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

17 lines 410 B
import React, { PureComponent } from 'react'; import { View } from 'react-native'; class KeyboardTrackingView extends PureComponent { static displayName = 'IGNORE'; render() { return <View {...this.props} />; } async getNativeProps() { return { trackingViewHeight: 0, keyboardHeight: 0, contentTopInset: 0 }; } scrollToStart() {} } export default KeyboardTrackingView;