Change Title of a Screen in React Native (Navigator)

Tiempo de lectura: < 1 minuto

Reading Time: < 1 minute

Today I’m going to show you how to change the title of the action bar in React Native:

// Add the title to the screen
navigation.setOptions({ title: "New title" })

By adding this code, you can change the title of the current window.

Leave a Comment