react-native-pure-chart
react-native-pure-chart copied to clipboard
Update to use new lifecycle method
React has changed their lifecycle methods to this https://reactjs.org/docs/react-component.html. There is a warning being thrown when you are using old lifecycle methods
You can rename the usage of componentWillReceiveProps
to UNSAFE_componentWillReceiveProps
to stop the warning but obviously a fix which used a supported lifestyle method (or a refactor to functional code) would be better.