import React from 'react';
import {
StatusBar,
StyleSheet,
Text,
useColorScheme,
View,
} from 'react-native';
const HomeScreen = () => {
return (
<>
locaft
>
);
}
const styles = StyleSheet.create({
viewRoot: {
backgroundColor: '#fffff2',
height: '100%',
},
heading: {
color: '#206ba5',
fontSize: 60,
textAlign: 'center',
marginTop: '50%',
fontFamily: 'Ubuntu-Bold',
}
});
export default HomeScreen;