DeVeLoP

[FlUtTeR] 기기의 해상도

freecatz 2019. 3. 7. 16:21


1. 코드

print('가로 : ' + MediaQuery.of(context).size.width.toInt().toString());  // 가로 해상도
print('세로 : ' + MediaQuery.of(context).size.height.toInt().toString()); // 세로 해상도



2. 결과

I/flutter (  936): 가로 : 360
I/flutter ( 936): 세로 : 640