You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-native-virtualized-view

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-virtualized-view

React Native Flatlist inside Scrollview.

1.0.0
latest
Source
npmnpm
Version published
Weekly downloads
6.4K
5.06%
Maintainers
1
Weekly downloads
 
Created
Source

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>
  ) 

Keywords

react-native

FAQs

Package last updated on 13 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts