본문 바로가기
728x90

프로그래밍75

[React Native] Touchable Opacity onPress, activeOpacity 등의 값 가질 수 있음 Child 뷰가 클릭될수 있게 돕는 기능으로, activeOpacity ={1}을 주면 클릭할때 반짝거리는 효과 완전 사라지고 평면 클릭하는것처럼 됨. onPressIn, onPressOut등을 사용하면 버튼을 눌렀을 때, 버튼을 뗐을 때를 인식해서 받아올 수 있음 샘플 예시 import React, { Component } from 'react'; import { StyleSheet, Text, View, Image, TextInput, Button, Platform, TouchableOpacity, TouchableHighlight, TouchableNativeFeedback, TouchableWithoutFeedback } from '.. 2019. 9. 28.
[React Native] Touchable Highlight onPress, underlayColor, onShowUnderlay 등의 값 가질 수 있음 Child 뷰가 클릭될수 있게 돕는 기능으로, underlayColor={“#00000000”}을 주면 클릭할때 반짝거리는 효과도 사라져서 깔끔하고 좋음 onPressIn, onPressOut등을 사용하면 버튼을 눌렀을 때, 버튼을 뗐을 때를 인식해서 받아올 수 있음 샘플 예시 import React, { Component } from 'react'; import { StyleSheet, Text, View, Image, TextInput, Button, Platform, TouchableOpacity, TouchableHighlight, TouchableNativeFeedback, TouchableWithout.. 2019. 9. 28.
[React Native] Documentation 리액트 네이티브 공식 페이지 https://facebook.github.io/react-native/ React Native · A framework for building native apps using React A framework for building native apps using React facebook.github.io Redux 설치 방법 Redux 설치를 위해 프로젝트 폴더 내로 Terminal 이동 후 npm install --save redux npm install --save react-redux npm install --save-dev redux-devtools 위 코드 입력 React Native 에뮬레이터 실행 방법 *To run your app on iOS:* cd Web.. 2019. 9. 28.
728x90