oksktank / react-native-pure-chart

react-native chart library that not using svg or ART but only using react native pure components.
MIT License
288 stars 132 forks source link

Fix warning #125

Open igorfggomes opened 3 years ago

igorfggomes commented 3 years ago

Fix warning: "componentWillReceiveProps has been renamed and is not recommended for use”. componentWillReceiveProps is a synchronous hook. Calling asynchronous function like data fetching inside this hook will need to render in between when the new props are set and when data has finished loading.

Use componentDidUpdate to fix this.