react-native-big-list
react-native-big-list copied to clipboard
Does the lib support dynamic cell heights?
Does the lib support dynamic cell heights?
Hi, the only way to have dynamic cell height is using itemHeight as function https://marcocesarato.github.io/react-native-big-list-docs/props#required-itemheight.
Example:
<BigList
//...
itemHeight={(section, index) => {
// Your logic
if(index === 10) return 100;
return 50;
}}
/>
This is not tested using columns at the moment.
What can we do to implement waterfall type list with this library?