marcocesarato / react-native-big-list

This is a high performance list view for React Native with support for complex layouts using a similar FlatList usage to make easy the replacement. This list implementation for big list rendering on React Native works with a recycler focused on performance and memory usage and so it permits processing thousands items on the list.
https://marcocesarato.github.io/react-native-big-list-docs/
Apache License 2.0
525 stars 41 forks source link

[Question] Scrolling two big lists synchronously? #272

Open vinaybedre opened 1 year ago

vinaybedre commented 1 year ago

Hi,

I am trying to build a screen, where we have a horizontal calendar on top which scrolls horizontally and a vertical calendar on the bottom.

An example picked up from Supershift IMG_9712824AC303-1

When we scroll bottom vertical calendar, top horizontal calendar should also scroll in sync and vice versa. Both the calendars are using big-list. Is there a way on how to achieve such a thing?

Any hints are appreciated.