목차
접기
728x90
반응형
앱의 출력화면은 App.js에서 만들어진다.
- react라는 모듈에서 Component라는 클래스를 import는 해옴.
- Component라는 클래스는 App 클래스가 상속 받았다.
- Component 클래스 안에는 화면을 출력하는 render()라는
함수가 존재한다.- 이 함수가 return하는 것들이 화면을 구성한다.
import React, {Component} from 'react';
import {View, Text, StyleSheet} from 'react-native';
class App extends Component {
render() {
return (
<View style={styles.background}>
<Text>Hello World!!!!</Text>
</View>
);
}
}
const styles = StyleSheet.create({
background: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
export default App;
728x90
반응형
LIST
'IT 유용한 정보' 카테고리의 다른 글
[ react-native ] 'App' 형식에 'setState' 속성이 없습니다. 오류 해결 방법 (0) | 2021.01.16 |
---|---|
[ react-native ] state 사용법 1. (0) | 2021.01.16 |
[ react-native ] react-native project init(프로젝트 생성 방법) (0) | 2021.01.16 |
[ react-native ] Arrow function 사용법 (0) | 2021.01.16 |
react.native 사용 방법 작성중 (0) | 2021.01.13 |