Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hoaphantn7604/react-native-virtualized-view

React Native Flatlist inside Scrollview
https://github.com/hoaphantn7604/react-native-virtualized-view

components elements flatlist-inside-scrollview react-native virtualized-view

Last synced: about 1 month ago
JSON representation

React Native Flatlist inside Scrollview

Awesome Lists containing this project

README

        

# react-native-virtualized-view
When Flatlist inside Scrollview, will have a warning:




virtualizedlists should never be nested inside plain scrollviews with the same orientation because it can break windowing and other functionality - use another virtualizedlist-backed container instead.




react-native-virtualized-view will resolve this problem.
## Getting started
```js
npm install react-native-virtualized-view --save
```
or
```js
yarn add react-native-virtualized-view
```


fateh999




## Usage
```javascript
import { FlatList } from 'react-native';
import { ScrollView } from 'react-native-virtualized-view';

return (




)
```