import React from 'react'; import { StatusBar, StyleSheet, Text, useColorScheme, View, } from 'react-native'; import { Icon } from 'react-native-elements' const HomeScreen = () => { return ( <> Rental Home Key ); } const styles = StyleSheet.create({ viewRoot: { backgroundColor: '#fffff2', 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;