Socket
Socket
Sign inDemoInstall

react-native-infinite-listview

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-infinite-listview

A React Native ListView completely written in js, support refresh control and infinite scrolling


Version published
Weekly downloads
88
increased by18.92%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

react-native-infinite-listview

A React Native ListView completely written in js, support refresh control and infinite scrolling

demo

Installation

$ npm install react-native-infinite-listview --save

Usage

import {InfiniteListview} from 'react-native-infinite-listview';

//...

render() {
  return (
    <InfiniteListView
      style={{ flex: 1 }}
      dataArray={this.state.listItems}
      renderRow={this.renderRow}
      onRefresh={this.onRefresh}
      isRefreshing={this.state.isRefreshing}
      canLoadMore={this.canLoadMoreContent}
      isLoadingMore={this.state.isLoadingMore}
      onLoadMore={this.onLoadMore}
    />
  );
}

See more in Sample project

License

MIT License. © Joel Arvidsson 2015

Keywords

FAQs

Last updated on 05 Jun 2017

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc