Skip to content

Commit

Permalink
completed first screen of nanny registration
Browse files Browse the repository at this point in the history
  • Loading branch information
RitaSensei committed May 1, 2024
1 parent d7ea2d2 commit 6049ee4
Show file tree
Hide file tree
Showing 13 changed files with 720 additions and 60 deletions.
6 changes: 6 additions & 0 deletions careconnect/app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ export default {
],
},
],
[
"expo-image-picker",
{
photosPermission: "The app accesses your photos",
},
],
],
extra: {
firebaseApiKey: process.env.FIREBASE_API_KEY,
Expand Down
1 change: 0 additions & 1 deletion careconnect/navigators/NannyHiringStackNavigator.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from "react";
import { createStackNavigator } from "@react-navigation/stack";
import { AnimatedTabBarNavigator } from "react-native-animated-nav-tab-bar";
import NanniesCatalogScreen from "../screens/nannies catalog/NanniesCatalogScreen";
import VisitorHomeScreen from "../screens/home/visitor/VisitorHomeScreen";
import SettingsScreen from "../screens/settings/SettingsScreen";
import { useIsFocused, useNavigation } from "@react-navigation/native";

Expand Down
6 changes: 4 additions & 2 deletions careconnect/navigators/NewAccountStackNavigator.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from "react";
import { createStackNavigator } from "@react-navigation/stack";
import NewAccountNannyScreen from "../screens/creating account/nanny/NewAccountNanny";
import NewAccountNanny1Screen from "../screens/creating account/nanny/NewAccountNanny1";
import NewAccountNanny2Screen from "../screens/creating account/nanny/NewAccountNanny2";
import NewAccountParentScreen from "../screens/creating account/parent/NewAccountParent";

import { Image, StyleSheet, TouchableOpacity } from "react-native";
Expand All @@ -27,7 +28,8 @@ const NewAccountStackNavigator = () => {
// ),
}}
>
<NewAccountStack.Screen name="Nanny New Account Page" component={NewAccountNannyScreen} />
<NewAccountStack.Screen name="Nanny New Account Page 1" component={NewAccountNanny1Screen} />
<NewAccountStack.Screen name="Nanny New Account Page 2" component={NewAccountNanny2Screen} />
<NewAccountStack.Screen name="Parent New Account Page" component={NewAccountParentScreen} />
</NewAccountStack.Navigator>
);
Expand Down
93 changes: 93 additions & 0 deletions careconnect/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion careconnect/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"react-dom": "18.2.0",
"react-native": "0.73.6",
"react-native-animated-nav-tab-bar": "^3.1.10",
"react-native-credit-card-input": "^0.4.1",
"react-native-gesture-handler": "^2.14.0",
"react-native-paper": "^5.12.3",
"react-native-reanimated": "~3.6.2",
Expand All @@ -41,7 +42,8 @@
"react-native-ui-lib": "^7.20.3",
"react-native-vector-icons": "^10.0.3",
"react-native-web": "~0.19.6",
"react-navigation-header-buttons": "^11.2.1"
"react-navigation-header-buttons": "^11.2.1",
"expo-image-picker": "~14.7.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
Expand Down
10 changes: 0 additions & 10 deletions careconnect/screens/creating account/nanny/NewAccountNanny.js

This file was deleted.

Loading

0 comments on commit 6049ee4

Please sign in to comment.