▶ Refer to https://reactnative.dev/docs/scrollview
스크린을 넘겨서 화면 이동하는 기능
ScrollView
에서 Style
을 지정하고 싶다면?
contentContainerStyle
사용
▶ Refer to https://reactnative.dev/docs/scrollview#contentcontainerstyle
// 예시
<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
▶ Refer to https://reactnative.dev/docs/dimensions