cara membuat judul dinamis untuk layar di React Native

 componentDidMount() {
   this.props.navigation.setOptions({
     title: `Your Updated Title`,
   })
 }
Sleepy Sardine