Flutter Get largeur de l'écran
double height = MediaQuery.of(context).size.height;
double width = MediaQuery.of(context).size.width;
Lively Lizard
double height = MediaQuery.of(context).size.height;
double width = MediaQuery.of(context).size.width;
double width = MediaQuery.of(context).size.width;
double height = MediaQuery.of(context).size.height;
import 'package:flutter_screenutil/flutter_screenutil.dart';
dependencies:
flutter:
sdk: flutter
# add flutter_ScreenUtil
flutter_screenutil: ^0.4.2
import 'dart:ui' as ui;
Size get screenSize => (ui.window.physicalSize / ui.window.devicePixelRatio);