Published
- 1 min read
react native get route name
The solution for this is noted below
react native get route name
Solution
import { useNavigation, useRoute } from '@react-navigation/native'
const Route = useRoute()
console.log(Route)
// Object {
// "key": "Home-rRl8EIxLOOm9rqd2N6RSZ",
// "name": "Home",
// "params": undefined,
// }
Try other methods by searching on the site. That is if this doesn’t work