[React Native] Component & API(Ⅰ)

설정·2021년 12월 25일
0

ReactNative

목록 보기
7/30

1. ScrollView

▶ Refer to https://reactnative.dev/docs/scrollview

// 예시
<ScrollView contentContainerStyle={styles.contentContainer}>></ScrollView>

✔ ScrollView 에서는...?

  • Style prop사용 못한다.
<ScrollView style={styles.box}></ScrollView> // Style prop 사용 X
  • flex를 주지 않는다.(flex를 주면 스크롤 기능이 안됨.)
    ScrollView는 화면을 넘기는 기능으로 스크린보다 큰데 flex를 지정하면 기능 작동이 안됨.
<ScrollView contentContainerStyle={{ flex: 1 }}></ScrollView> // flex 속성 X

2. Dimensions

▶ Refer to https://reactnative.dev/docs/dimensions

  • 화면의 크기를 얻을 수 있는 API

0개의 댓글