react-virtual-list icon indicating copy to clipboard operation
react-virtual-list copied to clipboard

Super simple virtualized list React component

Results 17 react-virtual-list issues
Sort by recently updated
recently updated
newest added

Hi @developerdizzle, I've reorganized this library code using hooks and react 17. I'm willing to share if you want to update this library... Roey

**Problem addressed** `react-virtual-list` package causes error when bundled using webpack 5. Simply adding `import VirtualList from 'react-virtual-list'` to any file produces the following error: ``` Uncaught ReferenceError: arguments is not...

What's the best way to restore scroll position on navigation back/forward with this library? Would it be a matter of setting `options.initialState.firstItemIndex`, or storing position somewhere and calling the DOM...

I am trying to use this component around a table which is customised by me. I am trying just basic code, which is provided in demo. ```` const List3 =...

Will be nice if your library could be installed as: npm i --save react-virtual-list npm i --save-dev @types/react-virtual-list @types/ - this is repository which contains all types for all big-world...

Sometimes is important to have dynamical height of vlist items, at least first one. It should be great feature.

Hey, Thank you for the plugin. I am trying to create something like this example: https://shakedos.com/examples/list/pwa.php. I was wondering if it would be possible to set the containerHeight to 100%...

Thinking about the possibility of replacing the HoC technique with the [render prop](https://cdb.reacttraining.com/use-a-render-prop-50de598f11ce) technique. The syntax would go from: ```js const MyVirtualList = VirtualList()(MyList); return ( ); ``` to ```js...

Currently VirtualList attaches to the ['resize' event on the supplied container option](https://github.com/developerdizzle/react-virtual-list/blob/master/lib/VirtualList.js#L107). This is fine when `window` is supplied as the container, but will not fire when an alternate element...