React Native에서는 스타일링을 위해 Dimensions(from react-native)를 자주 활용한다.
Dimensions.get( )함수의 파라미터는 두 종류가 있다.
1) window
2) screen
→ 아이폰에서는 차이가 존재하지 않는다.
그러나 안드로이드에서는 상태바 포함여부에 따라 둘의 차이가 드러난다.
Dimensions.get('window')는 상태바를 제외한 영역을 추출하고
Dimensions.get('screen')은 상태바를 포함한 모든 화면의 영역을 추출한다.
'모바일 이야기' 카테고리의 다른 글
[React Native] Image aspect ratio 사용하기 (0) | 2022.02.12 |
---|---|
[React Native] Drawer Navigation에서 헤더 없이 Icon만 만들기 (0) | 2022.02.04 |
[React Native] TypeError: undefined is not an object (evaluating 'InnerNativeModule.installCoreFunctions') (0) | 2022.02.04 |
2021-11-03 React Native Notification 소리 설정 (0) | 2021.11.03 |
2021-10-28 안드로이드 개발 환경 세팅 (React Native) (0) | 2021.10.28 |