diff options
| author | meganhong <34787696+meganhong@users.noreply.github.com> | 2020-07-21 09:51:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-21 12:51:47 -0400 |
| commit | f1300739189283929cb20a22e5281388d1bbeafc (patch) | |
| tree | eaacd9999063c3ad45e3dc2e62f741e74aaf533e /src/screens/onboarding/Login.tsx | |
| parent | e87d4f2b10cff8cf5f31784cfddb22727a94f373 (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/Login.tsx')
| -rw-r--r-- | src/screens/onboarding/Login.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/onboarding/Login.tsx b/src/screens/onboarding/Login.tsx index 8aeb5e45..971595d3 100644 --- a/src/screens/onboarding/Login.tsx +++ b/src/screens/onboarding/Login.tsx @@ -150,7 +150,7 @@ const Login: React.FC<LoginProps> = ({navigation}: LoginProps) => { * Handles tap on "Get Started" text by resetting fields & navigating to the registration page. */ const goToRegistration = () => { - navigation.navigate('Registration'); + navigation.navigate('RegistrationOne'); setForm({...form, attemptedSubmit: false}); }; |
