import React from 'react'; import { View, Text, SafeAreaView, ScrollView, ImageBackground, TextInput, TouchableOpacity, StyleSheet } from 'react-native'; import Feather from '@expo/vector-icons/Feather'; import { windowWidth } from '../utils/Dimensions'; const HomeScreen = ({navigation}) => { return ( Hello Diligent navigation.openDrawer()}> ) } const styles = StyleSheet.create({ wrapper: { flexDirection: 'row', justifyContent: 'space-between', marginBottom: 20 }, imageBackground: { width: 35, height: 35 } }) export default HomeScreen;