스플레시이미지 안에 준비중인거 표시되고 있으면 따로 '준비중입니다'이 화면은 안떠도될것 같아서 로딩.js코드를 수정했는데 에러나서 문의드렸는데 이렇게 수정해보라고 하셔 이대로 넣었는데도 에러가 떠요~;;
import React from 'react';
import {View, Style, Image} from 'react-native';
import {firebase_db} from "../firebaseConfig";
const main = 'https://firebasestorage.googleapis.com/v0/b/sparta-myhoneytip-jung-23ea7.appspot.com/o/splash.png?alt=media&token=15ac1a60-b980-45cc-a4fe-d41f2794ee42'
export default function Loading(){
return(<View style={styles.container}>
<Image style={styles.mainImage} source={{uri:main}} />
</View>)
}
const styles = StyleSheet.create({
container: {
flex:1,
justifyContent:'center',
alignItems:'center',
backgroundColor: '#fdc453',
}
})