일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- hover
- HTML
- iOS 개발자
- 풀스택
- Animation
- 백엔드
- keyframes
- button
- react
- MAC
- SWIFT
- 자바스크립트
- ipad
- image
- 개발자
- front-end
- html5
- effect
- 프론트엔드
- iPhone
- jQuery
- php
- javascript
- CSS
- 비전공 개발자
- css3
- xcode
- 비전공자
- IOS
- 애니메이션
- Today
- Total
목록RN (4)
비전공자 개발일기

위의 에러가 발생해서 pod install이 안되는 경우의 해결 절차 1. 특정 프로젝트의 ios/Podfile 열기 2. use_flipper!() 주석 3. pod install
import React, { useEffect } from "react"; import { StatusBar } from "expo-status-bar"; import { Text, View, StyleSheet, BackHandler, Alert } from "react-native"; import { WebView } from "react-native-webview"; import Constants from "expo-constants"; const MYLINK = "https://relaxed-turing-e7ea57.netlify.app"; // android 뒤로가기 버튼 클릭 시, 종료 확인 안내 문구 표시 const App = () => { useEffect(() => { const back..

정의된 자식에 대한 다양한 Press 상호 작용 단계를 감지할 수 있는 핵심 구성 요소 import React from 'react'; import {View, Text, Pressable} from 'react-native'; const Button = props => { return ( { console.log('Press In'); }} onPressOut={() => { console.log('Press Out'); }} onPress={() => { console.log('Press'); }} onLongPress={() => { console.log('Long Press'); }} delayLongPress={3000} pressRetentionOffset={{button: 50, left: ..
React(React.js): 사용자 인터페이스 및 웹 애플리케이션 구축을 위해 만든 프론트엔드 웹과 서버에서 실행되는 것을 지원하는 JS ReactDOM.render( Hello, world!, document.getElementById('root') ); Component 뛰어난 Garbage Collection, 메모리 관리, 성능 서버 사이드 렌더링과 클라이언트 렌더링 둘 다 지원 간편한 UI 수정과 재사용이 용이 다른 프레임워크나 라이브러리와 혼용해서 사용가능 데이터 모델링, Routing, Ajax 등의 기능 제공 x IE 8 버전 이하에서 사용 불가 React - Native: 기본 앱 구성 요소로 컴파일되는 모바일 프레임워크, 페이스북이 개발한 오픈 소스 모바일 애플리케이션 프레임워크 im..