react-virtualized-listview
react-virtualized-listview copied to clipboard
Add support for dynamic heights
What the issue is
The virtualized list view only works for fixed heights when initialized. When the height of the container window is changed the list view does not account for the changed height.
Steps to reproduce
- Create a list view component using the virtualized view.
- Increase the height of the container window.
- Scrolling and the virtualization only works for the initial height.
Possible solution
- Add resize helpers to listen for container height changes and reinitialize the view.
@nishanbajracharya The best bet I found is ResizeObserver but the browser support isn't good.