Allows creating masonry style list layouts in a performant way.
This component leverages FlatList
to render performant masonry layout lists. The
main caveat right now is that it doesn't support measuring cells (yet) so you need to be
able to provide the dimensions.
yarn add @appandflow/masonry-list
import MasonryList from '@appandflow/masonry-list';
This component supports most of the props of FlatList
plus a few extras one:
Returns the height for a specific item. Note that this it not optional for now.
The number of columns.
Same as renderItem
from FlatList
but also gets passed the column index.
Play with on Expo
Take a look at example folder
-
Support measuring items automatically and get rid of
getHeightForItem
. -
Implement onEndReached in a way that it isn't called multiple times.
-
Support FooterComponent.
-
Long term, could probably be implemented without using multiple
VirtualizedList
to make it more performant and less hacky.