이번 포스팅에서는 스타일을 꾸며보도록 하겠습니다. 저번 포스팅에서 hello world를 띄우기 완료했다면, 그 소스를 그대로 가지고와서 style 설정을 진행해줍니다. 코드는 web이랑 크게 다른 것 같지 않습니다,. /** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow */ import React,{Component} from 'react'; import { View,Text, StyleSheet } from 'react-native'; class App extends Component{ render(){ return ( hello world hello world hello world ) ..