import React from 'react'; import { SafeAreaView, View, Text, TouchableOpacity, StyleSheet, Image } from 'react-native'; import MaterialIcons from '@expo/vector-icons/MaterialIcons'; const OnboardingScreen = ({navigation}) => { return ( DILIGENT navigation.navigate('Login')}> Let's begin ) } const styles = StyleSheet.create({ safeArea: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#fff' }, headText: { fontWeight: 'bold', fontSize: 70, color: '#20315f', fontFamily: 'poppins-semibold' }, logo: { flex: 1, justifyContent: 'center', alignItems: 'center' }, button: { backgroundColor: '#AD40AF', padding: 20, width: '90%', borderRadius: 10, marginBottom: 50, flexDirection: 'row', justifyContent: 'space-between' }, buttonText: { color: 'white', fontSize: 18, textAlign: 'center', fontWeight: 'bold', fontFamily: 'poppins-regular' } }) export default OnboardingScreen;