Skip to content

Instantly share code, notes, and snippets.

@melihmucuk
Created July 5, 2015 22:41
Show Gist options
  • Save melihmucuk/725bc5a726e37df5d4fa to your computer and use it in GitHub Desktop.
Save melihmucuk/725bc5a726e37df5d4fa to your computer and use it in GitHub Desktop.
render: function() {
if (!this.state.loaded) {
return this.renderLoadingView();
}
return (
<ListView
dataSource={this.state.dataSource}
renderRow={this.renderPost}
automaticallyAdjustContentInsets={false}
style={styles.mainView}
/>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment