본문 바로가기
728x90
반응형

리액트네이티브38

[리액트 네이티브] 배경이미지 넣기 ImageBackground import React from "react"; import { StyleSheet, View, ..., ImageBackground, ... } from "react-native"; ... export default class App extends React.Component { render(){ return( ); } } https://docs.expo.io/versions/v34.0.0/react-native/imagebackground/ ImageBackground - Expo Documentation A common feature request from developers familiar with the web is background-image. To handle this use case, y.. 2019. 9. 17.
[리액트네이티브]텍스트 크기 시스템에 영향받지않고 내가 지정한 크기로 조정하기 글자크기 고정하기! 사용자가 지정한 시스템 크기가아닌 내가 원하는 크기로 맞추기 위해 써줘야할 코드 constructor() { super(); Text.defaultProps = Text.defaultProps || {}; Text.defaultProps.allowFontScaling = false; } 이 코드를 넣어주지 않으면 내가 아무리 fontSize를 넣어줘도 핸드폰에 지정된 글자크기에 따라 다르게나옴! 2019. 9. 16.
[react-native] EXPO로 시작해보기 15 - API 연동해 결과 가져와 출력하기 json으로 반환되는 API를 이용해서 해당 결과를 적용해 컴포넌트를 출력.. 파라미터 값이 있을 때 해당 컴포넌트를 출력하도록 한다. ... export default class App extends React.Component { render(){ return( ... {this.state.param == null ? null : } .... ) } } .... 파라미터 값을 가지고 해당 컴포넌트를 생성하며 API값을 가져온다. import ...... //필요한 내용 import export default class ComponenetName extends React.Component { state = { apiResult : [] } componentWillMount(){ //컴포넌트가 생성될때 .. 2019. 8. 29.
[react-native] EXPO로 시작해보기 14 - 스크롤뷰 안에 스크롤뷰 넣기 스크롤뷰 안에 스크롤뷰를 넣었더니 바깥 스크롤뷰의 스크롤은 정상 작동하는데.. 안쪽 스크롤뷰의 스크롤을 하려해도 바깥쪽 스크롤뷰만 스크롤된다..... ... 한참 검색끝에 nestedScrollEnabled={true} 를 추가하면 정상 작동한다! ... 2019. 8. 27.
728x90
반응형