We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d93766d commit 53974e9Copy full SHA for 53974e9
App.js
@@ -1,19 +1,20 @@
1
import { StatusBar } from 'expo-status-bar';
2
import React from 'react';
3
-import { StyleSheet, Text, View } from 'react-native';
+import { Image, StyleSheet, Text, View } from 'react-native';
4
+import Loading from './app/screen/Loading';
5
6
export default function App() {
7
return (
8
<View style={styles.container}>
-
9
+ <Loading />
10
</View>
11
);
12
}
13
14
const styles = StyleSheet.create({
15
container: {
16
flex: 1,
- backgroundColor: '#fff',
17
+ backgroundColor: "#FFBD00",
18
alignItems: 'center',
19
justifyContent: 'center',
20
},
0 commit comments