Coder Social home page Coder Social logo

jljlpch / react-native-pull Goto Github PK

View Code? Open in Web Editor NEW

This project forked from greatbsky/react-native-pull

0.0 2.0 0.0 28 KB

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

License: MIT License

JavaScript 100.00%

react-native-pull's Introduction

react-native-pull

reactnative Version NPM Version GitHub issues GitHub stars GitHub license Twitter

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. PullView can host multiple components and views like ScrollView, PullList can efficient display of vertically scrolling lists of changing data like ListView. 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. You also can design yourself topIndicator with animation during the process of pulling or pushing using function topIndicatorRender and onPushing.

PullView & PullList demo project: https://github.com/greatbsky/react-native-pull-demo

PullView Demo

PullView Usage

  1. Run npm install react-native-pull --save
  2. Code like this:
import {PullView} from 'react-native-pull';

onPullRelease(resolve) {
  //do something
  setTimeout(() => {
          resolve();
      }, 3000);
}

<PullView onPullRelease={this.onPullRelease}>
  //<Children />
</PullView>
  1. Full demo code: https://github.com/greatbsky/react-native-pull-demo/blob/master/PullViewDemo/app.js

PullList Demo

PullList Usage

  1. Run npm install react-native-pull --save
  2. Code like this:
  import {PullList} from 'react-native-pull';

  onPullRelease(resolve) {
    //do something
    setTimeout(() => {
          resolve();
      }, 3000);
  }

  <PullList onPullRelease={this.onPullRelease} {...and some ListView Props}/>
  1. Full demo code: https://github.com/greatbsky/react-native-pull-demo/blob/master/PullListDemo/app.js

PullView & PullList configuration

Pull down props for PullView & PullList

  • style: stylesheet of component, set width/height/flex/backgroudColor... etc
  • onPulling: handle function when pulling
  • onPullOk: handle function when pullok
  • onPullRelease: handle function when pullrelease, access 1 argument: resolve. You should invoke resolve() in the end.
  • topIndicatorRender: top indicator render function, access 4 argument: ispulling, ispullok, ispullrelease, gesturePosition. you can design yourself topIndicator with animation when pulling using gesturePosition.
  • topIndicatorHeight: top indicator height, require if define topIndicatorRender
  • isPullEnd: whether release pull, if true, will hide top indicator, not require

Push up props for PullView & PullList

  • onPushing: handle function when pushing up, access 1 argument: gesturePosition. gesturePosition contain value {x,y}. gesturePosition.y > 0 when pulling down, gesturePosition.y < 0 when pushing up.

Just for PullView, 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-pull/wiki

react-native-pull's People

Contributors

greatbsky avatar masterliuwei avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.