diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx | 31 |
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; |