react-native-movable-view icon indicating copy to clipboard operation
react-native-movable-view copied to clipboard

Performance friendly movable component for React Native.

Results 5 react-native-movable-view issues
Sort by recently updated
recently updated
newest added

Simple change needed to MovableView.js: componentWillUnmount was deprecated in 2018 component**Will**Mount() { if (typeof this.props.onMove === 'function') this.state.pan.addListener((values) => this.props.onMove(values)); } Replace with: component**Did**Mount() { if (typeof this.props.onMove === 'function')...

Hi nice work here. Is there any way to get back to the old position from where I started moving? Can onDragEnd help me out somehow?

I got the following error after the following command: this is my pod file ` # Uncomment the next line to define a global platform for your project # platform...

I used this component, Now I need the exact value of X, Y coordinate from my device, I am getting the value of x and y, but its a change...

hi, Grate work!, works good, but, lack of animation (something like elastic drag or auto fix..). Can you advise how to restrict object not moving out of screen or given...