naoufal / react-native-accordion

An Accordion Component for React Native
https://www.npmjs.com/package/react-native-accordion
437 stars 101 forks source link

add _getContentHeight to componentWillUpdate stage #40

Open DerayGa opened 7 years ago

DerayGa commented 7 years ago

when accordion is render in listview react-native will decide to "UPDATE" it or "MOUNT/RE-MOUNT" it dependent on the key.

if key is the same, accordion only get update(which faster) but in this case, "expanded" props will not works. because it only take effect in componentDidMount.

add same work as componentWillUpdate, work nice