![thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FBUB5I%2Fbtr2D7QkDZA%2FEMJK92RKIllfHMVwfLFWi1%2Fimg.png)
[React Native] 라디오 버튼 구현하기(react-native-radio-buttons-group)
2023. 3. 10. 20:25
프로그래밍/React Native
react-native-radio-buttons-group로 라디오 버튼 구현하기 📍 Installation npm i react-native-radio-buttons-group --save # or yarn add react-native-radio-buttons-group 📍 사용법 App.js 예시 import React, { useState } from 'react'; import RadioGroup from 'react-native-radio-buttons-group'; export default function App() { const [radioButtons, setRadioButtons] = useState([ { id: '1', // acts as primary key, should be ..
![thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FrgDil%2Fbtr2sYfmRht%2F94Kb3SWO8TsyrzvOyCxuI1%2Fimg.png)
[React Native Error] unable to find utility "simctl", not a developer tool or in PATH
2023. 3. 8. 20:45
프로그래밍/React Native
unable to find utility "simctl", not a developer tool or in PATH error 내용 xcrun: error: unable to find utility "simctl", not a developer tool or in PATH error Could not get the simulator list from Xcode. Please open Xcode and try running project directly from there to resolve the remaining issues. Error: Command failed: xcrun simctl list --json devices xcrun: error: unable to find utility "simct..
![thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Ft6go4%2Fbtr1Iq4VSfA%2FfBIoP2HEtM18iyCsDc0zY0%2Fimg.png)
[React Native Error] Error: spawnSync adb ENOENT
2023. 3. 6. 20:25
프로그래밍/React Native
Android 실행 builde하려고 할때 Error: spawnSync adb ENOENT 에러가 뜨는 경우 해결 방법 brew install --cask android-platform 위의 명령어로 설치 후 adb version 확인해보기 adb --version
![thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FQo8oK%2Fbtr1lAgtT2x%2FXO3kO1VsL0uUgRzYSFJAKK%2Fimg.png)
[React Native error] error Failed to install the app. Make sure you have the Android development environment
2023. 3. 3. 20:04
프로그래밍/React Native
React Native 프로젝트 빌드 오류 내용 error Failed to install the app. Make sure you have the Android development environment set up: https://reactnative.dev/docs/environment-setup. Error: Command failed: ./gradlew app:installDebug -PreactNativeDevServerPort=8081 FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:installDebug'. > com.android.builder.testing.api.Devi..
React Native와 Flutter 비교
2023. 1. 18. 20:04
프로그래밍/React Native
React Native와 Flutter 비교 대표적인 크로스 플랫폼 개발 프레임 워크인 React Native와 Flutter를 비교해보자 React Native vs Flutter 언어 React Native는 React를 사용. React는 JavaScript기반의 React문법을 사용함 Flutter는 JS를 대신하기 위하여 구글에서 개발한 Dart라는 언어를 사용 React Native Flutter JavaScript 기반 React 문법 Dart 개발 Tool React Native와 Flutter 모두 Android Studio를 사용하여 개발이 가능 React Native는 XCode로도 사용이 가능하지만, Flutter는 구글에서 만들었기 때문에 그런지 XCode는 지원하지 않음 그외 다..