first commit

This commit is contained in:
Rodrigo Nogueira de Sousa
2026-05-22 11:12:19 +01:00
commit 47d2cc65c3
91 changed files with 18528 additions and 0 deletions

20
App.tsx Normal file
View File

@@ -0,0 +1,20 @@
import React from 'react';
import { StatusBar } from 'expo-status-bar';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { AuthProvider } from './src/context/AuthContext';
import AppNavigator from './src/navigation/AppNavigator';
import { COLORS } from './src/constants/theme';
export default function App() {
return (
<SafeAreaProvider>
<AuthProvider>
<StatusBar
style="light"
backgroundColor={COLORS.background}
/>
<AppNavigator />
</AuthProvider>
</SafeAreaProvider>
);
}