-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f9e3b8c
commit 5c68492
Showing
26 changed files
with
829 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
import { NavigationContainer } from '@react-navigation/native'; | ||
import { createNativeStackNavigator } from '@react-navigation/native-stack'; | ||
import React from 'react'; | ||
import WelcomeScreen from './src/screens/Authentication/Welcome/Welcome'; | ||
import CasesScreen from './src/screens/Cases/Cases'; | ||
import ProfileScreen from './src/screens/Profile/Profile'; | ||
import QRCodeScannerScreen from './src/screens/QRCodeScanner/QRCodeScanner'; | ||
import UpdatesScreen from './src/screens/Updates/Updates'; | ||
import { RootStackParamList } from './src/types/types'; | ||
// import { NavigationContainer } from '@react-navigation/native'; | ||
// import { createNativeStackNavigator } from '@react-navigation/native-stack'; | ||
// import React from 'react'; | ||
// import WelcomeScreen from './src/screens/Authentication/Welcome/Welcome'; | ||
// import CasesScreen from './src/screens/Cases/Cases'; | ||
// import ProfileScreen from './src/screens/Profile/Profile'; | ||
// import QRCodeScannerScreen from './src/screens/QRCodeScanner/QRCodeScanner'; | ||
// import UpdatesScreen from './src/screens/Updates/Updates'; | ||
// import { RootStackParamList } from './src/types/types'; | ||
|
||
export default function App() { | ||
const Stack = createNativeStackNavigator<RootStackParamList>(); | ||
return ( | ||
<NavigationContainer> | ||
<Stack.Navigator> | ||
<Stack.Screen name="Cases" component={CasesScreen} /> | ||
<Stack.Screen name="Welcome" component={WelcomeScreen} /> | ||
<Stack.Screen name="QRCodeScanner" component={QRCodeScannerScreen} /> | ||
<Stack.Screen name="Updates" component={UpdatesScreen} /> | ||
<Stack.Screen name="Profile" component={ProfileScreen} /> | ||
</Stack.Navigator> | ||
</NavigationContainer> | ||
); | ||
} | ||
// export default function App() { | ||
// const Stack = createNativeStackNavigator<RootStackParamList>(); | ||
// return ( | ||
// <NavigationContainer> | ||
// <Stack.Navigator> | ||
// <Stack.Screen name="Cases" component={CasesScreen} /> | ||
// <Stack.Screen name="Welcome" component={WelcomeScreen} /> | ||
// <Stack.Screen name="QRCodeScanner" component={QRCodeScannerScreen} /> | ||
// <Stack.Screen name="Updates" component={UpdatesScreen} /> | ||
// <Stack.Screen name="Profile" component={ProfileScreen} /> | ||
// </Stack.Navigator> | ||
// </NavigationContainer> | ||
// ); | ||
// } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,8 @@ | |
}, | ||
"web": { | ||
"favicon": "./assets/favicon.png" | ||
} | ||
}, | ||
"plugins": ["expo-router"], | ||
"scheme": "your-app-scheme" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.