Skip to content

Instantly share code, notes, and snippets.

@mariodev12
Created February 10, 2017 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mariodev12/1cd35a856ec272e8e61970156740c721 to your computer and use it in GitHub Desktop.
Save mariodev12/1cd35a856ec272e8e61970156740c721 to your computer and use it in GitHub Desktop.
renderRow(rowData){
return (
<TouchableHighlight style={styles.containerCell}>
<View>
<View style={styles.footerContainer}>
<View style={styles.footerTextContainer}>
<Text style={styles.text}>{rowData.name}</Text>
<Text style={[styles.text, styles.textTitle]}>{rowData.number}</Text>
<Text style={[styles.text, styles.textBy]}>By {rowData.airdate}</Text>
</View>
</View>
</View>
</TouchableHighlight>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment