1.2.6 • Published 2 years ago

ro-virtual-scroll v1.2.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

🖥 Environment Support

  • Modern browsers
  • Server-side Rendering
  • Electron
IE / EdgeFirefoxChromeSafariElectron
Edgelast 2 versionslast 2 versionslast 2 versionslast 2 versions

📦 Install

npm install ro-virtual-scroll

🔨 Usage

Then add the component to your react app. For example:

index.js

import React from 'react';
import faker from 'faker';
import RoVirtualScroller from 'ro-virtual-scroll';

const listData = new Array(500000).fill(null).map((item, index) => ({
  key: `_${index}`,
  value: `${index}_${faker.lorem.sentences()}`,
}));

export default function TestVirtual() {
  return (
    <RoVirtualScroller
      className="someclass"
      style={{ height: '500px', width: '400px' }}
      listData={listData}
      estimatedItemSize={50}
      render={(visibleData) =>
        visibleData.map((item) => (
          <div key={item.key} style={{ borderBottom: '1px solid black' }}>
            <div>{item.value}</div>
          </div>
        ))
      }
    />
  );
}
1.2.6

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago