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