-
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.
* Completed login flow and Google Authentication setup. * Implemented hi-fi login screens with navigation. * Added Google authentication. --------- - Adjusted file structure and added placeholder screens for Directory and SpeciesInfo. - Cleaned up navigation and removed redundant scripts. --------- Co-authored-by: Chris Torres <[email protected]> Co-authored-by: Alex Wang <[email protected]> Co-authored-by: Aditya Pawar <[email protected]> Co-authored-by: Chris Torres <[email protected]>
- Loading branch information
1 parent
e64788b
commit a5dd674
Showing
32 changed files
with
4,870 additions
and
4,655 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
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,23 +1,9 @@ | ||
import React from 'react'; | ||
import { NavigationContainer } from '@react-navigation/native'; | ||
import { createNativeStackNavigator } from '@react-navigation/native-stack'; | ||
import ContactPage from './src/screens/contactPage'; | ||
import SearchScreen from './src/screens/searchScreen'; | ||
import { DefaultTheme } from '@react-navigation/native'; | ||
import AppNavigator from '@/navigation/AppNavigator'; | ||
|
||
export type RootStackParamList = { | ||
Search: undefined; | ||
Contact: undefined; | ||
}; | ||
|
||
const Stack = createNativeStackNavigator<RootStackParamList>(); | ||
DefaultTheme.colors.background = '#FFFFFF'; | ||
|
||
export default function App() { | ||
return ( | ||
<NavigationContainer> | ||
<Stack.Navigator initialRouteName="Search"> | ||
<Stack.Screen name="Search" component={SearchScreen} /> | ||
<Stack.Screen name="Contact" component={ContactPage} /> | ||
</Stack.Navigator> | ||
</NavigationContainer> | ||
); | ||
return <AppNavigator />; | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { registerRootComponent } from 'expo'; | ||
import App from './App'; | ||
|
||
registerRootComponent(App); |
Oops, something went wrong.