FixedSizeList固定尺寸的列表
import { FixedSizeList as List } from 'react-window';
const Row = ({ index, style }) => (
<div style={style}>Row {index}</div>
);
function App() {
return (
<List
height={150}
itemCount={100000}
itemSize={35}
width={300}
>
{Row}
</List>
);
}
export default App;
renderProps参数
- rowIndex
type=horizontal
- columnIndex
Grid
- columnIndex
- rowIndex