Jul 30, 2017 · 1 min read
Though I don’t think this is the case, it’s possible that the component is being rendered before all the data is passed over. if you try
render() {
if (!this.props.navigation.state.params) return null; // so render stops until data is available ... // all of your existing code
}
