React-Native
-
[RN공부하기] [2]Views, Text & StylesReact-Native/[RN]Expo 2021. 10. 19. 11:51
//App.js import { StatusBar } from 'expo-status-bar'; import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; export default function App() { return ( Hellow,World Body Text details Body Text details Body Text details Body Text details ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }..
-
[RN공부하기] [1]expo로 시작하기React-Native/[RN]Expo 2021. 10. 18. 13:18
https://reactnative.dev/docs/environment-setup Setting up the development environment · React Native This page will help you install and build your first React Native app. reactnative.dev rn공식 사이트와 https://docs.expo.dev/ Introduction to Expo - Expo Documentation Expo is an open-source platform for making universal native apps for Android, iOS, and the web with JavaScript and React. docs.expo.dev..