Skip to content

Instantly share code, notes, and snippets.

@franzejr
Created July 6, 2016 13:41
Show Gist options
  • Save franzejr/966d615f93a627ef18b992b0fa5ae247 to your computer and use it in GitHub Desktop.
Save franzejr/966d615f93a627ef18b992b0fa5ae247 to your computer and use it in GitHub Desktop.
Pull Refresh React Native
<ScrollView
style={styles.scrollview}
refreshControl={
<RefreshControl
refreshing={this.state.isRefreshing}
onRefresh={this._onRefresh}
tintColor="#ff0000"
title="Loading..."
titleColor="#00ff00"
colors={['#ff0000', '#00ff00', '#0000ff']}
progressBackgroundColor="#ffff00"
/>
}>
{rows}
</ScrollView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment