Agregar accesorios de refreshcontrol al componente principal de FlatList que sería contenido o ScrollView

import { StyleSheet, RefreshControl } from 'react-native';

 refreshControl={
          <RefreshControl
            refreshing={this.state.isRefreshing}
            onRefresh={() => this.handleRefresh()}
          />
        }