1.0.0 • Published 2 years ago

react-native-virtualized-view v1.0.0

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

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

    npm install react-native-virtualized-view --save

or

    yarn add react-native-virtualized-view

Usage

  import { FlatList } from 'react-native';
  import { ScrollView } from 'react-native-virtualized-view';

  return (
    <ScrollView>
      <FlatList />
      <FlatList />
    </ScrollView>
  )