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
- nexus proxy
- amazon ebs종류
- React Native
- statefulset
- kubectl
- kubectl명령어
- 명령어
- aws cli
- amazon ebs활용
- ELB
- docker myql
- 쿠버네티스
- cli ec2
- Configmap
- docker
- describe-instances
- amazon ebs
- Ansible
- sql 공유
- k8s
- SecurityContextHolder
- yaml예시
- 쿠버네티스교과서
- EC2
- jenkins parameter
- private repostiroy
- pod
- linux 파일복사
- 서버간 파일전송
- aws cli ec2
Archives
- Today
- Total
게으름을 위한 부지런한 게으름뱅리' 블로그
React Native 하루 기록 - SafeAreaView 본문
반응형
- 화면을 그릴때 View영역이 StatusBar 영역과 겹치는 현상이 발생.
- 안드로이드에서만 SafeAreaView가 정상적으로 동작하지 않음.
- OS에 따라서 Padding을 주어 해결.
export default function App() {
return (
<SafeAreaView style={{ paddingTop: Platform.OS === 'ios' ? 0 : StatusBar.currentHeight }}>
<Header></Header>
</SafeAreaView>
);
}
react-native-safe-area-context
react-native-safe-area-context를 설치하면 OS구분 없이 정상 동작하는걸 확인가능
설치하기
yarn add react-native-safe-area-context
사용하기
import { SafeAreaProvider, SafeAreaView } from 'react-native-safe-area-context';
export default function App() {
return (
<SafeAreaProvider>
<SafeAreaView style={{flex : 1}}>
<Header></Header>
</SafeAreaView>
</SafeAreaProvider>
);
}
반응형
'IT > FrontEnd' 카테고리의 다른 글
React Native 하루 기록 - map, ScrollView (0) | 2022.12.10 |
---|---|
React Native 하루 기록 - Expo Icon 사용하기 (0) | 2022.12.10 |
React Native 하루 기록 - custom Hook (0) | 2022.12.09 |
React Native 하루 기록 - React Hook (0) | 2022.12.08 |
React Native 하루 기록 - Core Components (0) | 2022.12.07 |
Comments