We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does the lib support dynamic cell heights?
The text was updated successfully, but these errors were encountered:
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.
itemHeight
Example:
<BigList //... itemHeight={(section, index) => { // Your logic if(index === 10) return 100; return 50; }} />
This is not tested using columns at the moment.
Sorry, something went wrong.
What can we do to implement waterfall type list with this library?
No branches or pull requests
Does the lib support dynamic cell heights?
The text was updated successfully, but these errors were encountered: