Closed
Description
DeviceEventEmitter.addListener('keyboardWillShow', this._keyboardWillShow.bind(this));
when keyboardWillShow
event fired.It will pass an argument with an easing
attribute inside.
just like
_keyboardWillShow = (e) => {
// e.easing === 'keyboard';
}
so.How to do animtion with keyboard
easing,or this easing attribute has no usage at all?
If this easing attribute has nothing to do with Animated easing,what`s the point of passing it.