UNPKG

@cqfw/react-native-pull-to-refresh

Version:

a pull to refresh component for react-native, same api on both android and ios.

17 lines (13 loc) 343 B
'use strict'; import React from 'react'; import {ListView} from 'react-native'; import Pullable from '../local/Pullable'; export default class PullListView extends Pullable { getScrollable = () => { return ( <ListView ref={(c) => this.scroll = c} {...this.props}/> ); } }