diff options
| author | Ivan Chen <ivan@thetaggid.com> | 2020-11-05 22:13:49 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-05 22:13:49 -0500 |
| commit | 96c46ac20f062aaf814f02184ce8c05ffc860a15 (patch) | |
| tree | 436d9ae34d101f8543d3063b6371c1d44279be1b /src/screens/onboarding | |
| parent | 1f56aec4deb9001a889a9acbff3107f6c8d5837c (diff) | |
[TMA-344] Tabs bar margin, Social Taggs margin (#108)
* fixed margin for smaller screen
* fixed header avatar
* cleaned up code, improved logic
* yarn lint
* dynamically calculate avatar and header
* changed back tint color and use 1% for tabs bar margin
* last edit to avatar size
Co-authored-by: Husam Salhab <47015061+hsalhab@users.noreply.github.com>
Diffstat (limited to 'src/screens/onboarding')
| -rw-r--r-- | src/screens/onboarding/Checkpoint.tsx | 3 | ||||
| -rw-r--r-- | src/screens/onboarding/RegistrationTwo.tsx | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/screens/onboarding/Checkpoint.tsx b/src/screens/onboarding/Checkpoint.tsx index 8e53996f..0be1e831 100644 --- a/src/screens/onboarding/Checkpoint.tsx +++ b/src/screens/onboarding/Checkpoint.tsx @@ -48,7 +48,7 @@ const Checkpoint: React.FC<CheckpointProps> = ({route, navigation}) => { <Background style={styles.container}> <StatusBar barStyle="light-content" /> <RegistrationWizard style={styles.wizard} step="six" /> - <View style={styles.textContainer}> + <View style={styles.textContainer}> <Text style={styles.header}>You are registered!</Text> <Text style={styles.subtext}> We're almost there. Would you like to setup your profile now? @@ -64,7 +64,6 @@ const Checkpoint: React.FC<CheckpointProps> = ({route, navigation}) => { </TouchableOpacity> </View> </View> - </Background> ); }; diff --git a/src/screens/onboarding/RegistrationTwo.tsx b/src/screens/onboarding/RegistrationTwo.tsx index 3249a281..edefebaf 100644 --- a/src/screens/onboarding/RegistrationTwo.tsx +++ b/src/screens/onboarding/RegistrationTwo.tsx @@ -106,7 +106,7 @@ const RegistrationTwo: React.FC<RegistrationTwoProps> = ({ }); }; - /* + /* * Handles changes to the email field value and verifies the input by updating state and running a validation function. */ const handleEmailUpdate = (email: string) => { |
