Created
July 5, 2015 22:41
-
-
Save melihmucuk/725bc5a726e37df5d4fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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