123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /**
- * Sample React Native App
- * https://github.com/facebook/react-native
- *
- * @format
- */
- import React from 'react';
- import {
- SafeAreaView,
- ScrollView,
- StatusBar,
- StyleSheet,
- Text,
- useColorScheme,
- View,
- } from 'react-native';
- import { ThemeProvider } from './src/context/theme.context';
- import AppNavigator from './src/navigation/AppNavigator';
- import { GestureHandlerRootView } from 'react-native-gesture-handler';
- import 'react-native-gesture-handler'
- function App() {
- return (
- <React.StrictMode>
- <ThemeProvider>
- <AppNavigator />
- </ThemeProvider>
- </React.StrictMode>
- );
- }
- const styles = StyleSheet.create({
- sectionContainer: {
- marginTop: 32,
- paddingHorizontal: 24,
- },
- sectionTitle: {
- fontSize: 24,
- fontWeight: '600',
- },
- sectionDescription: {
- marginTop: 8,
- fontSize: 18,
- fontWeight: '400',
- },
- highlight: {
- fontWeight: '700',
- },
- });
- export default App;
|