aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-02-09 18:53:59 -0500
committerIvan Chen <ivan@tagg.id>2021-02-11 17:47:15 -0500
commita5f60d3455b056ca3eea4f7fa48e78a1b0a11f1d (patch)
treeff247d192ce831e6c81cfe6b81339dafebca5668 /src
parent2e7f85d457922c3d448840d177c35f89be14de39 (diff)
a bit more progress for image upload
Diffstat (limited to 'src')
-rw-r--r--src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx31
1 files changed, 23 insertions, 8 deletions
diff --git a/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx b/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx
index 3f31e130..43619453 100644
--- a/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx
+++ b/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx
@@ -1,24 +1,26 @@
-import React from 'react';
+import React, {useState} from 'react';
import {StatusBar, StyleSheet} from 'react-native';
import {Text} from 'react-native-animatable';
import {SafeAreaView} from 'react-native-safe-area-context';
-import {TaggSquareButton} from '../../components';
import {normalize, SCREEN_WIDTH} from '../../utils';
const SuggestedPeopleUploadPictureScreen: React.FC = () => {
+ const [image, setImage] = useState(undefined);
return (
<>
<StatusBar barStyle={'light-content'} />
<SafeAreaView style={styles.container}>
- {/* <Text style={styles.body}>FOoooooo</Text> */}
+ <Text style={styles.title}>PICTURE</Text>
+ <Text style={styles.body}>Adjust picture or go back to reupload</Text>
{/* <TaggSquareButton
onPress={() => {}}
- title={'done'}
+ title={'Done'}
buttonStyle={'normal'}
buttonColor={'purple'}
labelColor={'white'}
+ style={styles.buttonStyle}
+ labelStyle={styles.buttonLabel}
/> */}
- <Text style={styles.body}>barrr</Text>
</SafeAreaView>
</>
);
@@ -31,14 +33,27 @@ const styles = StyleSheet.create({
backgroundColor: '#878787',
alignItems: 'center',
},
+ title: {
+ marginTop: '10%',
+ fontSize: normalize(25),
+ lineHeight: normalize(30),
+ fontWeight: '600',
+ color: 'white',
+ },
body: {
- fontSize: normalize(20),
- lineHeight: normalize(25),
+ fontSize: normalize(15),
+ lineHeight: normalize(18),
textAlign: 'center',
- fontWeight: '700',
+ fontWeight: '600',
color: 'white',
marginTop: '5%',
+ marginBottom: '10%',
width: SCREEN_WIDTH * 0.8,
},
+ buttonLabel: {
+ fontWeight: '600',
+ fontSize: normalize(15),
+ },
+ buttonStyle: {},
});
export default SuggestedPeopleUploadPictureScreen;