2022. 1. 12. 12:59ㆍReact Native/Basic
2022.01.11 - [React Native/Basic] - [React Native] React Native Component - 1. Intro
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 2. View, Text
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 3. Style
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 4. TouchEvent
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 5. Button
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 6. ScrollView
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 7. TextInput
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 9. Picker
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 10. Slider
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 11. ActivityIndicator
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 12. Image
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 13. Modal
3. Style
스타일을 주는 방법은 2가지가 있다.
1. inline style
2. 아래에 따로 style 지정.
1. inline style
/* eslint-disable react-native/no-inline-styles */
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React, {Component} from 'react';
import {View, Text} from 'react-native';
class App extends Component {
render() {
return (
<View
style={{
backgroundColor: 'green',
height: '100%',
paddingTop: 50,
}}>
<View>
<Text>hello world</Text>
</View>
<View>
<Text>hello world</Text>
</View>
<View>
<Text>hello world</Text>
</View>
</View>
);
}
}
export default App;
backgroundColor - 배경색 지정.
height - 뷰 높이 지정.
padding - 뷰 내부의 다른 컴포넌트와의 간격을 띄워둬야 할 때 사용.
margin - 뷰 외부의 다른 컴포넌트와의 간격을 띄워둬야 할 때 사용.
+) react native 의 어떤 것도 float과 같은 부동소수점을 인식하지 못하므로 정수를 입력해야만 한다.
2. 아래에 따로 style 지정.
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React, {Component} from 'react';
import {View, Text, StyleSheet} from 'react-native';
class App extends Component {
render() {
return (
<View style={styles.mainView}>
<View>
<Text>hello world</Text>
</View>
<View>
<Text>hello world</Text>
</View>
<View>
<Text>hello world</Text>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
mainView: {
backgroundColor: 'green',
flex: 1,
paddingTop: 50,
alignItems: 'center',
justifyContent: 'center'
}
});
export default App;
StyleSheet의 create로 스타일 객체를 만들어 사용.
flex - 화면을 채우는 컴포넌트들 간의 차지하는 영역의 비율을 나타내는 지표. 예) 뷰 2개인데 하나는 flex: 1, 하나는 flex: 3의 값을 가진다면 1/4, 3/4 만큼의 영역을 차지.
alignItems - 수평정렬.
justifyContent - 수직정렬.
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React, {Component} from 'react';
import {View, Text, StyleSheet} from 'react-native';
class App extends Component {
render() {
return (
<View style={styles.mainView}>
<View style={styles.subView}>
<Text style={styles.mainText}>hello world</Text>
</View>
<View style={styles.subView}>
<Text>hello world</Text>
</View>
<View style={styles.anotherSubView}>
<Text style={styles.mainText}>hello world</Text>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
mainView: {
backgroundColor: 'green',
flex: 1,
paddingTop: 50,
alignItems: 'center',
justifyContent: 'center',
},
subView: {
flex: 1,
backgroundColor: 'yellow',
marginBottom: 10,
width: '50%',
},
anotherSubView: {
flex: 2,
backgroundColor: 'yellow',
marginBottom: 10,
width: '100%',
alignItems: 'center',
justifyContent: 'center',
},
mainText: {
fontSize: 50,
fontWeight: 'bold',
color: 'red',
padding: 20,
},
});
export default App;
참고 자료
iOS/Android 앱 개발을 위한 실전 React Native - Basic - 인프런 | 강의
Mobile App Front-End 개발을 위한 React Native의 기초 지식 습득을 목표로 하고 있습니다. 진입장벽이 낮은 언어/API의 활용을 통해 비전문가도 쉽게 Native Mobile App을 개발할 수 있도록 제작된 강의입니다
www.inflearn.com
'React Native > Basic' 카테고리의 다른 글
[React Native] React Native Component - 5. Button (0) | 2022.01.12 |
---|---|
[React Native] React Native Component - 4. TouchEvent (0) | 2022.01.12 |
[React Native] React Native Component - 2. View, Text (0) | 2022.01.12 |
[React Native] React Native Component - 1. Intro (0) | 2022.01.11 |
[React Native] React (0) | 2022.01.08 |