Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. _renderMessage() {
  2. return (
  3. <View style={ ... }>
  4. <Text>List is Empty</Text>
  5. </View>
  6. )
  7. }
  8.  
  9. _renderListView() {
  10. return (
  11. <ListView
  12. ...
  13. />
  14. )
  15. }
  16.  
  17. render() {
  18. if (this.state.dataSource.getRowCount() == 0) {
  19. return this._renderMessage()
  20. } else {
  21. return this._renderListView()
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement