필수: node.js / npm / expo
선택: Android Studio (Window,Rinux) / Xcode (macOs)
React Native의 작업 방식은 2가지가 있다.
expo cli
RN cli
expo는 모든 Native 파일들을 숨기고 관리한다. RN cli방식은 Native 파일들을 더 정교하게 설정할 수 있다. 이번 수업에서는 Native 파일까지는 수정하지 않아 expo 방식으로 잔행할 예정이다.
expo 설치
npm install -g expo-cli
expo init {프로젝트 이름}
npm start
ctrl + M
를 하면 개발자 도구가 나온다.npm run eject
를 하게되면 모든 comfigration 파일들은 보이게 한다.eject
를 실행하게 되면 다시 되돌릴 수 없다. expo에서 자동으로 해주던 업데이트를 나 혼자 처리해야한다.import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text>hihi</Text>//<Text>나 <View>가 브릿지 역할을 한다.
<StatusBar style="auto" />
</View>
);
}
//따로 css 파일을 만들지 않는다.
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});