Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions frontend/.claude/settings.local.json

This file was deleted.

31 changes: 14 additions & 17 deletions frontend/App.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
import {NavigationContainer} from '@react-navigation/native';
import Navigation from './src/navigation/Navigation';
import {I18nextProvider} from 'react-i18next';
import i18n from "../frontend/src/config/i18n";
import {ThemeProvider} from './src/hooks/useTheme';

export default function App() {
return (
<View style={styles.container}>
<Text>Open up App.tsx to start working on your app!</Text>
<StatusBar style="auto" />
</View>
);
return (
<ThemeProvider>
<NavigationContainer>
<I18nextProvider i18n={i18n}>
<Navigation/>
</I18nextProvider>
</NavigationContainer>
</ThemeProvider>
);
}

const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
9 changes: 6 additions & 3 deletions frontend/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "frontend-temp",
"slug": "frontend-temp",
"version": "1.0.0",
"orientation": "portrait",
"orientation": "default",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
Expand All @@ -13,15 +13,18 @@
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true
"supportsTablet": true,
"requireFullScreen": false,
"orientation": "default"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false
"predictiveBackGestureEnabled": false,
"orientation": "default"
},
"web": {
"favicon": "./assets/favicon.png"
Expand Down
Loading
Loading