RefreshControl
is used inside a ScrollView or ListView to add pull to refresh functionality. at this example we will use it with ListView
'use strict'
import React, { Component } from 'react';
import { StyleSheet, View, ListView, RefreshControl, Text } from 'react-native'
class RefreshContr...