
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
외부에서 이미지 가져올때 했던 방식처럼
import React from 'react';
import { StyleSheet, Text, View, ScrollView, TouchableOpacity, Image } from 'react-native';
export default function App() {
return (
<Text style={styles.title}> TipTip!</Text>
<Image style={style.mainImage} source={{url:"https://firebasestorage.googleapis.com/v0/b/sparta-image.appspot.com/o/lecture%2Fmain.png?alt=media&token=8e5eb78d-19ee-4359-9209-347d125b322c"}}
resizeMode={"cover"}
/>
전체 화면 캡처
이렇게 하면 뭐가 잘못된건가요..?
const 함수 사용해서 할때 뒤에 붙는 main은 구별하기 위해 지은 아무개같은건가요?
그리고 const는 return( 안에는 못 넣나요?
