From 5dee1e585353b6d7407f521dfa9186dbf10e8226 Mon Sep 17 00:00:00 2001 From: meganhong <34787696+meganhong@users.noreply.github.com> Date: Mon, 13 Jul 2020 15:08:06 -0700 Subject: TMA123: Add Profile Pictures UI (#17) * rebasing * rebasing * remove debug code * fixed margins and added navigation from login * moved plist file into gitignore * moved index.ts to onboarding directory * install react native image crop picker * added permissions into Info.plist * rebasing * minor changes for Justins PR * change debug code back Co-authored-by: meganhong --- src/routes/Routes.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/routes') diff --git a/src/routes/Routes.tsx b/src/routes/Routes.tsx index c426b033..bf9b9fbd 100644 --- a/src/routes/Routes.tsx +++ b/src/routes/Routes.tsx @@ -1,12 +1,14 @@ import React from 'react'; import {createStackNavigator} from '@react-navigation/stack'; -import {Login, Registration, Verification} from '../screens'; +import {Login, Registration, Verification, Profile, Camera} from '../screens/onboarding'; export type RootStackParamList = { Login: undefined; Registration: undefined; Verification: undefined; + Profile: undefined; + Camera: undefined; }; const RootStack = createStackNavigator(); @@ -31,6 +33,11 @@ const Routes: React.FC = ({}) => { component={Verification} options={{headerShown: false}} /> + + ); }; -- cgit v1.2.3-70-g09d2