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
- kubectl
- Configmap
- 서버간 파일전송
- SecurityContextHolder
- kubectl명령어
- aws cli
- aws cli ec2
- sql 공유
- k8s
- docker
- amazon ebs종류
- 쿠버네티스교과서
- private repostiroy
- docker myql
- amazon ebs활용
- linux 파일복사
- yaml예시
- statefulset
- nexus proxy
- 명령어
- 쿠버네티스
- cli ec2
- React Native
- ELB
- EC2
- Ansible
- pod
- jenkins parameter
- amazon ebs
- describe-instances
Archives
- Today
- Total
게으름을 위한 부지런한 게으름뱅리' 블로그
React Native 하루 기록 - map, ScrollView 본문
반응형
Map
- 반복되는 data를 그릴때 사용
- 순차적으로 순회 후 return
- 배열의 길이 만큼 return
- 각각의 item들은 unique한 key가 있어야 한다.
export default (props) => {
return (
//showsVerticalScrollIndicator :스크롤 바 감추기
//contentContainerStyle : 맨아래로 스크롤 했을 경우 아래가 잘리지 않고 보임
<ScrollView showsVerticalScrollIndicator={false} contentContainerStyle={{paddingBottom : bottomSpace }}>
{/* Map에서 key를 설정해주지 않으면 경고, key는 최상단 root 컴포넌트에 있어야 한다 */}
{ props.data.map((item, index) => (
<View key={index} >
<Profile uri={item.uri} name={item.name} introduction={item.introduction}/>
<Margin height={13}></Margin>
</View>
)) }
</ScrollView>
)
}
반응형
'IT > FrontEnd' 카테고리의 다른 글
React Native 하루 기록 - Style 적용하기 (0) | 2022.12.12 |
---|---|
React Native 하루 기록 - Expo Icon 사용하기 (0) | 2022.12.10 |
React Native 하루 기록 - SafeAreaView (0) | 2022.12.09 |
React Native 하루 기록 - custom Hook (0) | 2022.12.09 |
React Native 하루 기록 - React Hook (0) | 2022.12.08 |
Comments