728x90
320x100
https://github.com/TronNatthakorn/react-native-wheel-pick
아이템 및 날짜를 선택할때 유용한 라이브러리
설치
npm install react-native-wheel-pick --save --legacy-peer-deps
npm install @react-native-picker/picker --save --legacy-peer-deps
npm install @react-native-community/datetimepicker --save --legacy-peer-deps
npx pod-install
사용방법
import { Picker, DatePicker } from 'react-native-wheel-pick';
// use Picker
<Picker
style={{ backgroundColor: 'white', width: 300, height: 215 }}
selectedValue='item4'
pickerData={['item1', 'item2', 'item3', 'item4', 'item5', 'item6', 'item7']}
onValueChange={value => { console.log(value) }}
/>
// use DatePicker
<DatePicker
style={{ backgroundColor: 'white', width: 370, height: 240 }}
onDateChange={date => { console.log(date) }}
/>
728x90
320x100
'front-end > React Native' 카테고리의 다른 글
[RN] react-native-sound 사용하기 (0) | 2023.02.21 |
---|---|
[RN] Realm Studio로 realm file 열기 (0) | 2023.01.18 |
[RN]날짜, 시간 선택 라이브러리<react-native-date-picker> (0) | 2023.01.08 |
react-native-vector-icons 사용법 / 엑박문제 해결 (0) | 2022.12.13 |
[react-native]리액트JS와의 차이점 (코어컴포넌트와 style) (0) | 2022.12.05 |
댓글