[React-Native] 리액트 네이티브 스타일 적용하기!
리액트 네이티브는 styleSheet를 이용하여 Javascript처럼 스타일을 적용할 수 있습니다. import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; const styles = StyleSheet.create({ container: { marginTop: 50, }, bigBlue: { color: 'blue', fontWeight: 'bold', fontSize: 30, }, red: { color: 'red', }, }); export default LotsOfStyles = () => { return ( just red just bigBlue bigBlue, then red red, then bigBl..