
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-pullview
Advanced tools
PullView component in React Native both for Android and iOS, pull to refresh
This is the PullView & PullList component in React Native both for Android and iOS, pull to refresh, very useful & easily!
This is a JavaScript-only implementation of PullView & PullList in React Native. Like ScrollView and ListView, PullView can host multiple components and views, PullList can efficient display of vertically scrolling lists of changing data. Better than ScrollView & ListView in Android, this PullView & PullList can be pull down, then show top indicator, the top indicator have three state: pulling, pullok, pullrelease. And more, PullView also can make you use refreshControl to provide pull-to-refresh same as scrollview. PullList also can make you use any props like ListView.
PullView & PullList demo project: https://github.com/greatbsky/react-native-pullview-demo
PullView Demo
PullView Usagenpm install react-native-pullview --saveimport {PullView} from 'react-native-pullview';
onPullRelease(resolve) {
//do something
resolve();
}
<PullView onPullRelease={this.onPullRelease}>
//<Children />
</PullView>
PullList Demo
PullList Usage1. Run `npm install react-native-pullview --save`
2. Code like this:
import {PullList} from 'react-native-pullview';
onPullRelease(resolve) {
//do something
resolve();
}
<PullList onPullRelease={this.onPullRelease} {...and some ListView Props}/>
PullView & PullList configuration**Pull down props for PullView & PullList **
onPulling: handle function when pullingonPullOk: handle function when pullokonPullRelease: handle function when pullreleasetopIndicatorRender: top indicator render function, access 3 argument: ispulling, ispullok, ispullreleasetopIndicatorHeight: top indicator height, require if define topIndicatorRenderisPullEnd: whether release pull, if true, will hide top indicator, not requireJust for PullView, refreshcontrol props support onRefresh & refreshing if you want to use refreshcontrol like scrollview.
onRefresh: Called when the view starts refreshingrefreshing: Whether the view should be indicating an active refresh.MIT License
FAQs
PullView component in React Native both for Android and iOS, pull to refresh
We found that react-native-pullview demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.