index.tsx (a33ab089f600b0704705705531fc92bd29a6ae6a) index.tsx (5f52c604b029df23d68566f557654c455cb07379)
1import React from 'react';
2import {NavigationContainer} from '@react-navigation/native';
3import {createNativeStackNavigator} from '@react-navigation/native-stack';
4import bootstrap from './bootstrap';
5import {routes} from './router';
6import {Provider as PaperProvider} from 'react-native-paper';
7import {GestureHandlerRootView} from 'react-native-gesture-handler';
8import Dialogs from '@/components/dialogs';

--- 40 unchanged lines hidden (view full) ---

49 <PageBackground />
50 <Stack.Navigator
51 initialRouteName={routes[0].path}
52 screenOptions={{
53 statusBarColor: 'transparent',
54 statusBarTranslucent: true,
55 headerShown: false,
56 animation: 'slide_from_right',
1import React from 'react';
2import {NavigationContainer} from '@react-navigation/native';
3import {createNativeStackNavigator} from '@react-navigation/native-stack';
4import bootstrap from './bootstrap';
5import {routes} from './router';
6import {Provider as PaperProvider} from 'react-native-paper';
7import {GestureHandlerRootView} from 'react-native-gesture-handler';
8import Dialogs from '@/components/dialogs';

--- 40 unchanged lines hidden (view full) ---

49 <PageBackground />
50 <Stack.Navigator
51 initialRouteName={routes[0].path}
52 screenOptions={{
53 statusBarColor: 'transparent',
54 statusBarTranslucent: true,
55 headerShown: false,
56 animation: 'slide_from_right',
57 animationDuration: 200,
57 animationDuration: 100,
58 }}>
59 {routes.map(route => (
60 <Stack.Screen
61 key={route.path}
62 name={route.path}
63 component={route.component}
64 />
65 ))}

--- 13 unchanged lines hidden ---
58 }}>
59 {routes.map(route => (
60 <Stack.Screen
61 key={route.path}
62 name={route.path}
63 component={route.component}
64 />
65 ))}

--- 13 unchanged lines hidden ---