Custom pull to refresh component for Android
examples/.
sh
$ npm install --save
`
#### Using yarn:
`sh
$ yarn add
`
$3
`jsx
import React, { Component } from 'react';
`
#### Props
| Prop | Type | Description |
|---|---|---|
|children|ReactElement|React Element(s) to render.|
|flipDuration|?number|Length of flip animation in milliseconds. _Default 280._|
|renderBackface|() => ReactElement|Callback that renders a backface.|
|renderFrontface|() => ReactElement|Callback that renders a frontface.|
|renderLoading|?() => ReactElement|Callback that renders a temporary view to display before base layout occurs. If not provided, renderFrontface is used instead.|
$3
- Install NodeJS
- Install and setup React Native
- Clone repository: git clone https://github.com/NadiKuts/react-native-pull-down.git
- Navigate to the created folder: cd react-native-pull-down`