New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-native-pullview

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-pullview

PullView component in React Native both for Android and iOS, pull to refresh

Source
npmnpm
Version
1.0.5
Version published
Weekly downloads
11
-15.38%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-pullview

This is the PullView component in React Native both for Android and iOS, pull to refresh, very useful & easily

This is a JavaScript-only implementation of PullView in React Native. Like ScrollView, this can host multiple components and views. Better than scrollview in Android, this PullView can be pull down, then show top indicator, the top indicator have three state: pulling, pullok, pullrelease. And more, you can use refreshControl to provide pull-to-refresh same as scrollview.

Demo

Demo project: https://github.com/greatbsky/react-native-pullview-demo

Usage

  • Run npm install react-native-pullview --save
  • Code like this:
import PullView from 'react-native-pullview';

onPullRelease(resolve) {
  //do something
  resolve();
}

<PullView onPullRelease={this.onPullRelease}>
//sth...
</PullView>

More configuration

pull down props

  • onPulling: handle function when pulling
  • onPullOk: handle function when pullok
  • onPullRelease: handle function when pullrelease
  • topIndicatorRender: top indicator render function, access 3 argument: ispulling, ispullok, ispullrelease
  • topIndicatorHeight: top indicator height, require if define topIndicatorRender
  • isPullEnd: whether release pull, if true, will hide top indicator, not require

other, refreshcontrol props support onRefresh & refreshing if you want to use refreshcontrol like scrollview.

  • onRefresh: Called when the view starts refreshing
  • refreshing: Whether the view should be indicating an active refresh.

Licensed

MIT License

中文说明请参见

https://github.com/greatbsky/react-native-pullview/wiki

Keywords

PullView

FAQs

Package last updated on 27 Jul 2016

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