OpenFlutter / flutter_screenutil

Flutter screen adaptation, font adaptation, get screen information
https://pub.dartlang.org/packages/flutter_screenutil
Apache License 2.0
3.83k stars 485 forks source link

[Feature/Enhancement] Request for max and min screen size #571

Open chzhhong97 opened 3 weeks ago

chzhhong97 commented 3 weeks ago

Request to add 2 more fields for max and min screen size, so the scaling wont less or more than min and max

Idea

double get scaleWidth => screenWidth.clamp(minScreenSize?.width ?? screenWidth, maxScreenSize?.width ?? screenWidth) / _uiSize.width;
setWidth => width * scaleWidth;

Not sure is there any feature to set min and max of screen size, so I make this post to request