Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesPull RequestsActionsSecurityInsightsSettings
✨ AI
More
Blame · Line-by-line history

AuthNavigator.tsx

Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.

AuthNavigator.tsxBlame23 lines · 1 contributor
9b18281Claude1import React from 'react';
2import { createNativeStackNavigator } from '@react-navigation/native-stack';
3import { LoginScreen } from '../screens/LoginScreen';
4import { colors } from '../theme/colors';
5
6export type AuthStackParamList = {
7 Login: undefined;
8};
9
10const Stack = createNativeStackNavigator<AuthStackParamList>();
11
12export function AuthNavigator(): React.ReactElement {
13 return (
14 <Stack.Navigator
15 screenOptions={{
16 headerShown: false,
17 contentStyle: { backgroundColor: colors.bg },
18 }}
19 >
20 <Stack.Screen name="Login" component={LoginScreen} />
21 </Stack.Navigator>
22 );
23}