Menambahkan RefreshControl Prop ke komponen induk dari flatlist yang akan konten atau scrollview

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

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