react-native-esoftplay-fast-scroll
Version:
replace for heavy ScrollView
36 lines (28 loc) • 673 B
Markdown
for heavy scrollView
```
npm install --save react-native-esoftplay-fast-scroll
```
> Please spread children of FastScroll as spreaded as you can, if you wrapping into single children item you will lose the performance optimization
```
import { ScrollView } from 'react-native'
<ScrollView>
//scrollable item
//scrollable item
//scrollable item
//scrollable item
</ScrollView>
```
```
import FastScroll from 'react-native-esoftplay-fast-scroll'
<FastScroll>
//scrollable item
//scrollable item
//scrollable item
//scrollable item
</FastScroll>
```