Render different row colours based on row id (https://stackoverflow.com/a/36127577)
renderRow(rowData, sectionID, rowID, highlightRow) {
if(rowID%2 === 0) {
return(<View style={{backgroundColor:'blue'}}/>);
}
return(<View style={{backgroundColor:'red'}}/>);
}