Skip to content

Instantly share code, notes, and snippets.

@kmagiera
Created October 24, 2018 12:05
Show Gist options
  • Save kmagiera/8076d998f315b14832042ff07a32a4a0 to your computer and use it in GitHub Desktop.
Save kmagiera/8076d998f315b14832042ff07a32a4a0 to your computer and use it in GitHub Desktop.
render() {
return (
<PanGestureHandler
onGestureEvent={this._onGestureEvent}
onHandlerStateChange={this._onGestureEvent}>
<Animated.View
style={[
styles.box,
{
transform: [{ translateX: this._transX }],
},
]}
/>
</PanGestureHandler>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment