aboutsummaryrefslogtreecommitdiff
path: root/src/routes/Routes.tsx
diff options
context:
space:
mode:
authorJustin Shillingford <jgs272@cornell.edu>2020-07-13 13:17:40 -0400
committerGitHub <noreply@github.com>2020-07-13 13:17:40 -0400
commit95e160e64dc6a5763fdbdc7d7e5b814302446ba9 (patch)
tree5423f0e8cedbe07a1a53ba4f530a5022e19c3229 /src/routes/Routes.tsx
parent7d8562b2a9f80d52b71c36a244f6a3002448227d (diff)
[TMA-95] Verification Page UI (#15)
* Removed header from view * Setup basic layout of Verification page Also created new SubmitButton component * Some light code cleanup * Implemented SubmitButton component on Login * Added basic verification field * Styled Verification CodeField * Quick typo fix * Some lint cleaning * Removed header from view * Setup basic layout of Verification page Also created new SubmitButton component * Some light code cleanup * Implemented SubmitButton component on Login * Added basic verification field * Styled Verification CodeField * Quick typo fix * Some lint cleaning * Verification isn't that exciting lol * Removed header from view * Setup basic layout of Verification page Also created new SubmitButton component * Some light code cleanup * Implemented SubmitButton component on Login * Added basic verification field * Styled Verification CodeField * Quick typo fix * Some lint cleaning * Light lint cleaning * Still not that exciting lol * Removed misplaced accessibility labels * Added documentation to SubmitButton component * Implemented KeyboardAvoidingView * Fixed wizard position consistency * Updated Verification CodeField to take 6 digits * Removed marginVertical prop from SubmitButton * Updated text to represent 6 digit code 🤦🏽‍♂️ * Made Background use centered prop Also found another 4 that needed to be a 6 🤦🏽‍♂️
Diffstat (limited to 'src/routes/Routes.tsx')
-rw-r--r--src/routes/Routes.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/routes/Routes.tsx b/src/routes/Routes.tsx
index 94040c1f..c426b033 100644
--- a/src/routes/Routes.tsx
+++ b/src/routes/Routes.tsx
@@ -26,7 +26,11 @@ const Routes: React.FC<RoutesProps> = ({}) => {
component={Registration}
options={{headerShown: false}}
/>
- <RootStack.Screen name="Verification" component={Verification} />
+ <RootStack.Screen
+ name="Verification"
+ component={Verification}
+ options={{headerShown: false}}
+ />
</RootStack.Navigator>
);
};