RN(React-Native) 시작하기 5 - 스크린 높이, 너비 가져오기

kwlee·2021년 8월 7일
0

RN(React-Native)

목록 보기
5/9
import {Dimensions} from 'react-native';

const Width = Dimensions.get('window').width;    //스크린 너비
const Height = Dimensions.get('window').height;  //스크린 높이
profile
안녕하세요.

0개의 댓글