Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
RN-LFVL-3 - Replacing dataSource with data
export default class Application extends Component {
...
render() {
if (this.state.isLoading) {
...
} else {
return (
<FlatList
data={this.state._data} //Replacing "dataSource={this.state.dataSource}"
...
/>
);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment