Skip to content

Instantly share code, notes, and snippets.

@princealirehman1
princealirehman1 / KeyboardHandler.js
Created August 28, 2020 09:55 — forked from dbasedow/KeyboardHandler.js
Keyboard spacing solution for react-native based on the stackoverflow answer http://stackoverflow.com/a/33585501/1783214
/**
* Based on http://stackoverflow.com/a/33585501/1783214
*
* Handle resizing enclosed View and scrolling to input
* Usage:
* <KeyboardHandler ref='kh' offset={50}>
* <View>
* ...
* <TextInput ref='username'
* onFocus={()=>this.refs.kh.inputFocused(this,'username')}/>