Routing
How to route
import { useRouter } from "expo-router";
export const FuncComponent = () => {
const navigation = useRouter()
// To navigate and allow going back
const navigate = () => {
navigation.navigate("/")
}
// to navigate WITHOUT allowing going back
const replace = () => {
navigation.replace("/")
}
// ...
}Automatic Routing
What is Automatic Routing
How to use
How it works
Custom Behavior
Last updated