LoginSignup
4
3

More than 3 years have passed since last update.

【Flutter/ Dart】デバイスの画面サイズや縦横比を取得する方法

Posted at

概要

画面を等分割して画像をグリッド表示させたい場合など、画面サイズを取得する必要があります。
Flutterでは、MediaQueryを使うと簡単に取得できます。

コード

final size = MediaQuery.of(context).size;

// 幅
final width = size.width;

// 高さ
final height = size.height;

// 縦横比
final aspectRatio = size.aspectRatio;
4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3