MediaQuery의 가로/세로 설정

테디준·2022년 7월 29일
0
post-custom-banner

MediaQuery를 이용해 핸드폰의 화면이 가로일 때와 세로일 때 GridView로 보이는 갯수가 다르게 하는 코드를 짰다. 그런데 orientationbuilder를 사용했을 때와 다른 점을 하나 발견했다. build()밑에 아래와 같이 변수 설정을 해주고,

final orientation = MediaQuery.of(context).orientation;
...
 return GridView(
   gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
   crossAxisCount:
   orientation == Orientation.portrait ? 2 : 4,
  ),

위와 같이 하면 아래 사진처럼 나온다.

그러나 아래 코드와 같이 orientationbuilder를 사용하면 아래와 같이 나온다.

return OrientationBuilder(builder: (context, orientation) {
  return GridView(
    gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
    crossAxisCount:
    orientation == Orientation.portrait ? 2 : 4,
  ),

orientationbuilder는 상위 위젯에 사용할 수 있는 폭과 높이를 비교하여 현재방향을 계산하고, 상위 위젯의 크기가 변경될 때 다시 작성한다. 그래서 키보드가 올라왔을 때 세로보다 가로가 길어진다고 계산해서 가로모드로 인식한 듯 하다.

그러므로 가로/세로 전환 시 비율을 정할 때는 MediaQuery사용을 추천한다.

post-custom-banner

0개의 댓글