当需要在 flutter 中使用 flutter_screenutil 包时,如何获取笔记本电脑的屏幕尺寸

How can get the size screen of laptop when need to use flutter_screenutil package in flutter

我在 app 上开发应用程序时使用 flutter_screenutil backage 我想在 flutter web 中使用 flutter_screenutil 我使用监视器分辨率中的大小但它没有得到正确的尺寸 我如何在网络中使用 flutter_screenutil 以及如何获得尺寸,但它在 flutter_screenutil 包

的 designSize 中
double height = MediaQuery.of(context).size.height;
double width = MediaQuery.of(context).size.width;

不用任何包也可以使用上面的代码

如果你使用 Get Package 就容易了

double height = Get.height; 
double width = Get.width;

否则material方式是

double height = MediaQuery.of(context).size.height; 
double width = MediaQuery.of(context).size.width;