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

🧾 React Virtual List Component which worked with animation

Results 103 virtual-list issues
Sort by recently updated
recently updated
newest added

在横向内容较多时,会非常卡顿,希望能加上横向虚拟滚动

```js 11111} > {(item) => } ``` 使用官方的 example,添加 `extraRender={() => 11111}` ![chatgpt](https://github.com/user-attachments/assets/cce57c6e-9ad3-4755-8870-513047f84682)

目前只能用这种方法在内部滚动区域拦截 wheelCapture 事件,有没有什么更简洁的方法呢 ``` import {UIEvent, useCallback, useEffect, useRef, WheelEvent} from 'react'; export const useProxyWheel = (ref: HTMLElement | null) => { const canDeltaUp = useRef(false); const canDeltaDown = useRef(false);...