import React, {useState} from 'react'; import { StatusBar, StyleSheet, Text, useColorScheme, View, TouchableHighlight, } from 'react-native'; import {Icon} from 'react-native-elements'; const HomeScreen = ({navigation}) => { const [token, setToken] = useState(''); return ( <> Rental navigation.navigate('SearchHouse')} > Home Key ); }; const styles = StyleSheet.create({ viewRoot: { backgroundColor: '#ffffff', height: '100%', }, heading: { color: '#206ba5', fontSize: 60, textAlign: 'center', marginTop: '40%', fontFamily: 'Ubuntu-Bold', }, icon: { alignSelf: 'flex-start', marginLeft: '28%', flexDirection: 'row', }, }); export default HomeScreen;