Files
RN_Template/RN_TEMPLATE/ignite/templates/navigator/NAMENavigator.tsx.ejs

19 lines
615 B
Plaintext
Raw Permalink Normal View History

2026-02-05 13:16:05 +08:00
---
destinationDir: app/navigators
---
import { createNativeStackNavigator } from "@react-navigation/native-stack"
import { WelcomeScreen } from "@/screens/WelcomeScreen"
export type <%= props.pascalCaseName %>NavigatorParamList = {
Demo: undefined
}
const Stack = createNativeStackNavigator<<%= props.pascalCaseName %>NavigatorParamList>()
export const <%= props.pascalCaseName %>Navigator = () => {
return (
<Stack.Navigator screenOptions={{ cardStyle: { backgroundColor: "transparent" }, headerShown: false, }}>
<Stack.Screen name="Demo" component={WelcomeScreen} />
</Stack.Navigator>
)
}