Im new in React so i work on a mini project of mine with a simple list. This is the code :
render() {
if (!this.state.loaded) {
return this.renderLoadingView();
}
return (
<View>
<ToolbarAndroid style={styles.toolbar}
title={"Hello React"}
titleColor={'#000000'}/>
<ListView
dataSource={this.state.dataSource}
renderRow={this.renderMovie}
style={styles.listView}/>
</View>
);
}
Also the style code:
listView: {
paddingTop: 20,
backgroundColor: '#F5FCFF',
flex: 1,
},