
ㅏimport React from 'react';
import {View,Text, Image, StyleSheet} from 'react-native';
const loadImage = 'https://i.ibb.co/T07c4bK/01-2.png' // 원하는 이미지의 url 삽입
export default function Loading(){
return(<View style={styles.container}>
<Text style={styles.title}>준비중입니다...</Text>
<Image style={styles.img} source={{uri:loadImage}}/>
</View>)
}
const styles = StyleSheet.create({
container: {
//앱의 배경 색
flex:1,
justifyContent:'center',
alignItems:'center',
backgroundColor: '#fdc453',
},
title: {
fontSize:20,
fontWeight:'700'
},
img: {
width:50,
height:50
}
})
예제 로딩중이랑 같은 로딩페이지가 뜨더라고요.. 저 이미지 바꿨는데
