
2주차 메인화면꾸미기에서 어떤 속성은 styles dict 에 배치하는데
//예시 bacgroundColor
const styles = StyleSheet.create({
container: {
//앱의 배경 색
backgroundColor: '#fff'
}}
어떤항목은 태그안에 직접넣어야 작동을 하더라고요?
//예시 horizontal, indicatorStyle
<ScrollView style={styles.middleContainer} horizontal indicatorStyle={"white"}>
</ScrollView>
그 기준이 뭔가요?
