import React, { useState } from "react";
import { StyleSheet, Text, View, TextInput, Button } from "react-native";
export default function App() {
return (
<View style={styles.screen}>
...
</View>
);
}
const styles = StyleSheet.create({
screen: {
padding: 3
}
});
StyleSheet에있는 screen요소를 설정해주면 View style에서 styles.screen 으로 해당 값을 사용할 수 있다.
style ={} 안에 인라인으로 작성된 코드를 밖으로 빼서 코드를 좀 더 간결하게만들 수 있다. 또한 같은 스타일을 여러번 사용할 수 있다.
'프로그래밍 > react native' 카테고리의 다른 글
[react native] 함수선언, 배열 (0) | 2019.11.12 |
---|---|
[Visual Studio Code] code formatting 줄정리 (0) | 2019.11.03 |
[React Native] layout (0) | 2019.11.03 |
[React Native] Button(using Hook), View (0) | 2019.10.28 |
[React Native] What is react native (0) | 2019.10.27 |