Try creating _layout.tsx file like below inside the app folder.
import React from "react"; import { Slot } from "expo-router"; const _layout = () => { return <Slot />; }; export default _layout;
You can try Stack instead of Slot as well.
Stack
Slot