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 }, search: { flexDirection: 'row', borderColor: '#C6C6C6', borderWidth: 1, borderRadius: 8, paddingHorizontal: 10, paddingVertical: 8 } }) export default HomeScreen;