aboutsummaryrefslogtreecommitdiff
path: root/src/screens/onboarding/index.ts
diff options
context:
space:
mode:
authormeganhong <34787696+meganhong@users.noreply.github.com>2020-07-21 09:51:47 -0700
committerGitHub <noreply@github.com>2020-07-21 12:51:47 -0400
commitf1300739189283929cb20a22e5281388d1bbeafc (patch)
treeeaacd9999063c3ad45e3dc2e62f741e74aaf533e /src/screens/onboarding/index.ts
parente87d4f2b10cff8cf5f31784cfddb22727a94f373 (diff)
Tma119: Split Registration Screen (#23)
* split registration screen * styling * changed 4:2 to 3:3 * fade wizard with keyboard visibility * added regex for first and last name * accidentally saved videos in this folder * shortened fade duration to 300ms * add fade to Registration2 * rename RegistrationOne and RegistrationTwo * moved keyboard logic into RegistrationWizard * moved loading indicator out of the way * moving loading to outside of keyboard avoiding view * moved loading indicator up Co-authored-by: Megan Hong <meganhong31@g.ucla.edu>
Diffstat (limited to 'src/screens/onboarding/index.ts')
-rw-r--r--src/screens/onboarding/index.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/screens/onboarding/index.ts b/src/screens/onboarding/index.ts
index 919ad7fd..e89e1d5f 100644
--- a/src/screens/onboarding/index.ts
+++ b/src/screens/onboarding/index.ts
@@ -1,4 +1,5 @@
export {default as Login} from './Login';
-export {default as Registration} from './Registration';
+export {default as RegistrationOne} from './RegistrationOne';
+export {default as RegistrationTwo} from './RegistrationTwo';
export {default as Verification} from './Verification';
export {default as Profile} from './Profile';