[React native] 기초 다지기 - view / 버튼 / Image / flex 세로 가로 설정 / 정렬 등 CSS
only for ios (해당 요소들을 핸드폰의 구조, 메뉴에 닿지않게 padding을 자동으로 넣어줌) android 의 경우에는 자동으로padding 넣어주기 import { StyleSheet, // CSS Text, TouchableWithoutFeedback, // 효과없음 TouchableOpacity, // 투명도 0되었다가 복구됨 TouchableHighlight, // 하이라이트됨 TouchableNativeFeedback, // 클릭한 곳으로부터 파장 View, // div와 같은 기능 Image, SafeAreaView, Button, Alert, Platform, // padding 주기 위해 StatusBar, } from 'react-native'; Platform 가져와서 ->..
[95일차]20210726 react Link, head, title, css, 라우터, 폰트, 이미지 넣기, 핸드폰과 연동하기
프론트에 next 를 설치하기 1. blog > back, front 폴더 생성 2. 터미널 front까지 접근 3. npm init / 설치 npm init npm install next react react-dom 3. package.json 수정 { "name": "front", "version": "1.0.0", "description": "", "main": "server.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "dev":"next dev -p 3001 -H 0.0.0.0", "build":"next build", "start":"next start", "lint":"next lint" }, "author..