first commit

This commit is contained in:
DESKTOP-CIKBOTF\ChiefSoft
2024-05-18 17:04:17 -04:00
parent d689640f98
commit d317af7d99
5 changed files with 141 additions and 6 deletions
+6 -2
View File
@@ -4,7 +4,7 @@ import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
<Text style={styles.title}>JabaBox Home</Text>
<StatusBar style="auto" />
</View>
);
@@ -13,8 +13,12 @@ export default function App() {
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
backgroundColor: 'plum',
alignItems: 'center',
justifyContent: 'center',
},
title:{
fontSize:44,
},
});