UNPKG

reactnativecomponents

Version:
20 lines (19 loc) 540 B
import Component from '../AbstractComponent'; import Props from './Props'; /** * @author 田尘殇Sean(sean.snow@live.com) * @date 2017/7/27 */ export default class KeyboardAvoidingView extends Component<Props> { static defaultProps: { keyboardBottomOffset: number; }; scrollView: any; subscriptions: any[]; frame: any; componentWillMount(): void; onKeyboardChange(event: any): void; relativeKeyboardHeight(keyboardFrame: any): number; onLayout(event: any): void; render(): JSX.Element; }