What scale have you tested the UI at? Do you have any demo / benchmarks for over 1M rows for example?
Reading through the infinite scrolling PR [1] it looks like scrolling isn’t virtualized (like Airtable’s) so the browser will start choking when it has too many elements in the DOM.
Hey, I’m one of the engineers working on Rowy. We use react-data-grid [1], which has built-in support for virtualized lists rendering. They have demo of a table with 1000 rows and the scrolling stays smooth [2]
Reading through the infinite scrolling PR [1] it looks like scrolling isn’t virtualized (like Airtable’s) so the browser will start choking when it has too many elements in the DOM.
[1] https://github.com/rowyio/rowy/pull/29