import {BlurView} from '@react-native-community/blur'; import {useNavigation} from '@react-navigation/native'; import React, {Fragment, useEffect} from 'react'; import {Image, StatusBar, StyleSheet, TouchableOpacity} from 'react-native'; import {Text} from 'react-native-animatable'; import {SafeAreaView} from 'react-native-safe-area-context'; import UpArrow from '../../assets/icons/up_arrow.svg'; import {isIPhoneX, normalize, SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils'; const SuggestedPeopleWelcomeScreen: React.FC = () => { const navigation = useNavigation(); useEffect(() => { navigation.setOptions({ headerBackImage: () => , }); }, []); return ( <> Welcome to the suggested people's page where you can discover new people!{'\n\n'}Let's get you set up! navigation.navigate('UpdateSPPicture', {editing: false}) }> ); }; const styles = StyleSheet.create({ backgroundImage: { width: SCREEN_WIDTH, height: SCREEN_HEIGHT, position: 'absolute', }, container: { width: '100%', height: '100%', backgroundColor: 'rgba(0,0,0,0.65)', alignItems: 'center', }, logo: { width: normalize(120), height: normalize(120), marginTop: '25%', }, body: { fontSize: normalize(20), lineHeight: normalize(25), textAlign: 'center', fontWeight: '700', color: 'white', marginTop: '5%', width: SCREEN_WIDTH * 0.8, }, nextButton: { position: 'absolute', color: 'white', transform: [{rotate: '90deg'}], width: normalize(70), aspectRatio: 0.86, bottom: SCREEN_HEIGHT * 0.1, right: '5%', }, }); export default SuggestedPeopleWelcomeScreen;