본문 바로가기
프로그래밍/React Native(2018)

[React Native] 스크린 크기(width, height) 구하는 방법

by 쿼카퀀트 2019. 9. 28.
728x90

먼저 import에서 Dimensions를 가져온 후

 

import {
    Dimensions
} from 'react-native';

 

render() method내부에서 아래처럼 width, height를 불러온다

let screenWidth = Dimensions.get('window').width;
let screenHeight = Dimensions.get('window').height;
728x90

댓글