react-native-collapsible
react-native-collapsible copied to clipboard
renderContent is being called for the all sections
I have just added a console.log in renderContent, and i see that renderContent is called as many as length of the sections. I think it should be called just for the the active sections.
renderContent(section, _, isActive) {
console.log("MOUNTED");
return (
<View style={{ flex: 1 }}>
<Text>TEST</Text>
</View>
);
}