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

componentWillMount was deprecated in 2018

Open spinoza1791 opened this issue 3 years ago • 0 comments

Simple change needed to MovableView.js: componentWillUnmount was deprecated in 2018

componentWillMount() { if (typeof this.props.onMove === 'function') this.state.pan.addListener((values) => this.props.onMove(values)); }

Replace with:

componentDidMount() { if (typeof this.props.onMove === 'function') this.state.pan.addListener((values) => this.props.onMove(values)); }

spinoza1791 avatar Nov 14 '22 16:11 spinoza1791