일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 모달에서뒤로가기
- 알고리즘
- vision-camera
- modal
- 2023년 정처기 필기
- 순열
- 재귀함수
- C++98에러
- makePermutation
- 자동로그인
- JSON
- react-native
- algorithm
- 리액트 네이티브
- Flatlist
- fcm 푸시
- asyncstorage
- 모달
- ReactNative
- fcm push
- React
- 가격자릿수
- touchableopacity
- TextInput
- 뒤로가기구현
- Icon
- 리액트네이티브
- API
- 페이지리렌더링
- 리액트
- Today
- Total
목록Icon (3)
생각은 길게 코딩은 짧게

RadioButton으로 최신순, 가나다순으로 정렬될 수 있도록 sorting을 구현해보았습니다 ✅ import RadioButton Icon - MaterialIcon을 사용하였습니다 import IconRadio from 'react-native-vector-icons/MaterialIcons'; ✅ ComponentDidMount ( 최신순 ) componentDidMount() { this.setState({indicator : true}); //ActivityIndicator this.callGetGoodsAPI().then((response) => { this.Contents = response; this.setState({ goodsContent: response }); //최신순 this...

안녕하세요 세히이 입니다 ! 카메라 구현하는데 애를 많이 먹었습니다 흑 RN 카메라 Vision 카메라 Image Picker 여러가지 찾아보았는데 RN 카메라는 deprecated 되었다고 하여 쓰지 않았고 Image-Picker을 시도해보았어요 카메라 아이콘을 누르면 모달이 뜨며 실행이 되도록 하였습니다 Image-Picker 설치 npm install --save react-native-image-picker android / app / src / main / AndroidManifest.xml 접근 권한 수정 모달 구현 ( UploadModeModal.js ) import React from "react"; import { StyleSheet, Modal, View, Pressable, Text ..

안녕하세요 세히이 입니다 며칠 시도하다 Icon 넣기를 결국 성공시켰답니다...!! 간단한 것이여도 꼬이면 참 힘든 것 같아요 ㅠ ㅠ 먼저 Icon 사용을 위해 npm으로 설치 ( yarn 으로 설치해도 되는데 전 npm을 사용했어요 ) npm install --save react-native-vector-icons yarn 으로 설치 yarn add react-native-vector-icons android > app > build.gradle ( 경로 중요 !!!! ) apply from: "../../node_modules/react-native/react.gradle" // 원래 작성되어 있는 코드 apply from: "../../node_modules/react-native-vector-ic..