본문 바로가기

기초다지기/React Native4

@fortawesome/react-native-fontawesome에서 fontSize가 안먹히는 이유 React Native에서 FontAwesome 아이콘을 사용할 때, 아이콘의 크기를 아래와 같이 조절하려고 하면 에러가 퍼퍼펑 터져버린다import { FontAwesomeIcon } from "@fortawesome/react-native-fontawesome";import { faPlus } from "@fortawesome/pro-regular-svg-icons";const styles = StyleSheet.create({ icon: { fontSize: 22, },});Type '{ fontSize: number; }' is not assignable to type 'FontAwesomeIconStyle | undefined'.ts(2322)index.d.ts(25, 3): The e.. 2025. 4. 23.
Expo CLI & React Native CLI 비교 React Native 프로젝트 생성 방법으로 Expo와 RN 방법이 있다Expo CLI장점간단한 초기 설정 : 기본 템플릿과 설정을 제공하여 복잡한 환경 설정 없이 빠르게 프로젝트 시작다양한 API 지원 : 카메라, 위치정보, 푸시 알림 등 쉽게 활용실시간 미리보기 : Expo Go 앱을 통해 실제 기기에서 즉시 앱을 테스트 함으로 개발 속도 향상크로스 플랫폼 지원 : Android Studio 나 Xcode 없이도 개발 가능단점네이티브 코드 제한 : Java, Swift 등 네이티브 코드를 직접 작성하거나 수정하기 어렵고, Expo에서 지원하지 않는 기능 구현 제한앱 크기 증가 : Expo 라이브러리가 포함되어 앱 크기가 큼제한된 라이브러리 사용 : Expo에서 지원하는 라이브러리만 사용 가능 Rea.. 2025. 1. 7.
react-native image height 이미지 높이 자동으로 맞추고 싶을 때 GitHub - vivaxy/react-native-auto-height-image: 🖼️React native auto height image 🖼️React native auto height image. Contribute to vivaxy/react-native-auto-height-image development by creating an account on GitHub. github.com yarn add react-native-auto-height-image npm install react-native-auto-height-image import React, { Component } from 'react'; import AutoHeightImage from 'react-native-auto-he.. 2023. 8. 22.
[React native] simulator Tap something to inspect it? Tap something to inspect it 없애는 방법 Command + D Hide Inspector 클릭 2023. 8. 18.