how to make dynamic title for screen in react native code example
Example: how to make dynamic title for screen in react native
componentDidMount() {
this.props.navigation.setOptions({
title: `Your Updated Title`,
})
}
componentDidMount() {
this.props.navigation.setOptions({
title: `Your Updated Title`,
})
}