import에 사용할 컴포넌트를 추가해주는 것 주의하기
expo go 시작 명령어 : npx expo start
진행 후 Text, Image 컴포넌트 정상 노출 확인
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, Text, View, Image, TextInput, Button, Alert, ScaolView} from 'react-native';
export default function App() {
return (
<View
style={{
height : 200,
padding : 50
}}
>
<Text
style={{
fontSize : 30,
fontWeight : "900"
}}
> Hello world! </Text>
<Image
style={{
width : 200,
height : 100
}}
source={require("./image/Likelion.png")}
/>
<Image
style = {{
width : 400,
height : 100
}}
source={{
url:"https://www.66girls.co.kr/renewwave/img/new/main_logo.png"
}}
/>
</View>
);
}
'React Native' 카테고리의 다른 글
앱제작 4 - 메뉴 추가 컴포넌트 작성하기 state (1) | 2023.11.24 |
---|---|
앱제작 3 - 함수형 컴포넌트 만들기 (1) | 2023.11.23 |
앱제작 2 - 클래스형 컴포넌트 만들기 (1) | 2023.11.23 |
앱 기획 프로토타이핑 - 카카오 오븐 (점심메뉴 뽑기 앱 개발하기) (1) | 2023.11.20 |
React Native 개발 환경 세팅 (0) | 2023.11.18 |