Skip to content
Open
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
5 changes: 4 additions & 1 deletion remo-client/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ import Register from "./screens/register";
import BookInfo from "./screens/bookinfo";
import Returns from "./screens/returnShelf";
import BookReturn from "./screens/bookReturn";
import Notifications from "./screens/notifications";


const Stack = createNativeStackNavigator();

Expand All @@ -40,7 +42,8 @@ export default function App() {
<Stack.Screen name="ReadingLogDisplay" component={ReadingLogDisplay} />
<Stack.Screen name="Returns" component={Returns} />
<Stack.Screen name="BookReturn" component={BookReturn} />

<Stack.Screen name="Notifications" component={Notifications} />

</Stack.Navigator>
</NavigationContainer>
);
Expand Down
753 changes: 753 additions & 0 deletions remo-client/package-lock.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions remo-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@expo/ngrok": "^4.1.0",
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-community/datetimepicker": "^7.0.0",
"@react-native-google-signin/google-signin": "^9.0.2",
"@react-navigation/bottom-tabs": "^6.5.5",
"@react-navigation/native": "^6.1.3",
Expand All @@ -25,7 +26,9 @@
"expo": "^47.0.13",
"expo-auth-session": "^3.8.0",
"expo-barcode-scanner": "~12.1.0",
"expo-device": "^5.2.1",
"expo-font": "~11.0.1",
"expo-notifications": "^0.18.1",
"expo-random": "^13.0.0",
"expo-status-bar": "~1.4.2",
"expo-web-browser": "~12.0.0",
Expand All @@ -40,6 +43,7 @@
"react-native-dropdown-picker": "^5.4.4",
"react-native-elements": "^3.4.3",
"react-native-modal": "^13.0.1",
"react-native-picker-weekday": "^1.1.2",
"react-native-progress-bar": "^0.1.2",
"react-native-progress-steps": "^1.3.4",
"react-native-safe-area-context": "4.4.1",
Expand Down
2 changes: 1 addition & 1 deletion remo-client/screens/googleSSO.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function GoogleSSO() {

try {
var res = await fetch(
"https://f9a8-155-33-133-12.ngrok.io/v1/login", {
"https://d510-155-33-133-32.ngrok.io/v1/login", {
method: "POST",
credentials: "include",
headers: {
Expand Down
Loading