If you are using navigation in child component don’t forget to send navigation in props to child
<ChildComponent navigation={this.props.navigation}/>
Access in child component like this
props.navigation.navigate("ScreenName")
<ChildComponent navigation={this.props.navigation}/>
props.navigation.navigate("ScreenName")