Skip to content

Instantly share code, notes, and snippets.

@BBB
Created September 10, 2015 14:59
Show Gist options
  • Save BBB/8b1a0149286c77765344 to your computer and use it in GitHub Desktop.
Save BBB/8b1a0149286c77765344 to your computer and use it in GitHub Desktop.
import { DeviceEventEmitter } from 'react-native';
DeviceEventEmitter.addListener('keyboardWillShow', (e) => {
// Use e.endCoordinates.height
// to set your view's marginBottom
// ...
});
DeviceEventEmitter.addListener('keyboardWillHide', (e) => {
// ...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment