// navigation/AppStack.tsx import React from "react"; import { createStackNavigator, StackNavigationOptions, } from "@react-navigation/stack"; import { NavigationProp } from "@react-navigation/native"; import { AppStackParams } from "./AppStackParams"; import { screens } from "./screens"; const App = createStackNavigator(); const options: StackNavigationOptions = { headerShown: false }; export type StackNavigation = NavigationProp; const AppStack = () => { return ( {screens.map((item) => ( ))} {/* 🚀 Later you can add HomeDrawer, Tabs, or other screens separately */} ); }; export default AppStack;