반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 딥러닝
- JavaScript
- 조코딩
- 강화학습 기초
- 카트폴
- clone coding
- selenium
- 앱개발
- redux
- pandas
- TeachagleMachine
- 정치인
- 크롤링
- python
- expo
- App
- 강화학습
- 데이터분석
- 리액트네이티브
- React
- 전국국밥
- kaggle
- coding
- FirebaseV9
- 사이드프로젝트
- 클론코딩
- Ros
- 머신러닝
- Instagrame clone
- ReactNative
Archives
- Today
- Total
qcoding
[ReactNative_study_7]Scroll View 사용 본문
반응형
1) scroll view를 사용하기 위해서 react native directory 에서
react-native-web-swiper
를 사용하였다. 기본적인 사용법은 git hup에 나와있을 것이고
https://github.com/reactrondev/react-native-web-swiper
헷갈리는 부분이 있어서 기억하기 위해 작성하였다.
react native에서 scrollView에서 파생된 component는 예를 들어 여기서 사용되는 <Swiper/>는 scrollView에서 나왔으므로 style을 할 때 props로 containerStyle 이라는 것을 사용한다.
이건 screen이 넘어가는 경우 그냥 style이 아니라 containerStyle 로 적용을 해줘야 된다. 이 때, <Swiper/> 또는 scrollView에서 파생된 component의 경우 상위 태그를 단순히 View가 아닌 ScrollView로 해줘야 swiper 내의 containerStyle이 먹히게 된다 .
ex)
-적용안됨
<View>
// Swiper는 기본적으로 ScrollView에서 파생되었으므로 부모 component는 ScrollView가 되어야함
<Swiper/ containerStyle ={{ 적용 안됨 x }}>
</View>
-적용됨
<ScrollView>
<Swiper/ containerStyle ={{ 적용 됨 }}>
</ScrollView>
반응형
'ReactNative' 카테고리의 다른 글
[ReactNative_Study_9]React_query (0) | 2021.11.28 |
---|---|
[ReactNative_study_8]ScrollView / Flat List (0) | 2021.11.28 |
[ReactNative_study_6]Theme Provider 사용하기 (0) | 2021.11.23 |
[ReactNative_study_5]Stack / Tab navigator 결합 (0) | 2021.11.23 |
[ReactNative_study_4]Stack Navigator (0) | 2021.11.23 |
Comments