-Breaking change. Use a new way to set font scaling -Deprecated ssp and nsp
- revert 5.0.0-nullsafety.10
- fix #230
- fix #228
- Supplementary documentation, supports two initialization methods
- merge v4
- Add a method to get the screen orientation
- fix #221
- merge #216 #218
- Optimize initialization method
- merge #205
- merge 4.0.2+3
- merge 4.0.2+2 #186
- merge 4.0.1 ,4.0.2 #183
- Migrated flutter_screenutil to non-nullable
- add r(),adapt according to the smaller of width or height
- Modify the initialization unit to dp
- delete screenWidthPx and screenHeightPx(No one use these method,I guess)
- update to 4.0.0
- Optimize the way of initialization
- fix error:'window is not a type.'
- change readme
- Modified the initialization method
- Support font adaptation in themedata
- Modify the method name to be more semantic: wp->sw , hp->sh
- Remove the restriction of flutter version
- Modify the return type num to double
- change readme
- Use the way back to v2 version
- Modify registration method
- Guide users to use V2 version
- Change the unit of'statusBarHeight' and 'bottomBarHeight' to dp
- update readme
- After a period of experimentation, I think it's time to release the official version
- readme update
BREAKING CHANGES
BuildContext
is no more required while initializing. i.e. ScreenUtil.init(context)- Initialize size of design draft using
designSize
instead of width & height. - All the static methods are now member methods.
- add textStyle Example.
- We still need context to initialize, sorry.
- add 'wp','hp'. Get the height/width of the screen proportionally
- For example: 0.5.wp : Half the width of the screen.
- add 'nsp' , you can use 'fontSize: 24.nsp' instead of 'fontSize: ScreenUtil().setSp(24, allowFontScalingSelf: false)'
- Use
MediaQueryData.fromWindow(window)
instead ofMediaQuery.of(context)
, no context parameter required - API changes, please note
- support ExtensionMethod Dart-SDK-2.6.0
- you can use 'width: 50.w' instead of 'width: ScreenUtil().setWidth(50)' '50.h' instead of 'ScreenUtil().setHeight(50)' '24.sp' instead of 'ScreenUtil().setSp(24)' '24.ssp' instead of 'ScreenUtil().setSp(24, allowFontScalingSelf: true)'
- fix #89
- 优化屏幕旋转效果
- 字体适配统一使用宽度
- Rebuild code, change API Delete "getInstance()", please use "ScreenUtil ()" instead of "ScreenUtil.getInstance()" use "ScreenUtil().setSp(24, allowFontScalingSelf: true)" instead of "ScreenUtil.getInstance().setSp(14, true)"
- Modify the initialization method
- Fix #68
- Change example code Example CompileSdkVersion change to 28
If there is significant impact, please return to 0.7.0
- Replace textScaleFactory with textScaleFactor , It's a typo.
- Add return types to all methods.
- Completing comments , adding English commentsWelcome to add, correct
- 参数同时支持传入 int / double 或者是var size = 100 , var size = 100.0.
- The argument also supports passing in in / double / var size = 100 /var size = 100.0
- Change the units of statusBarHeight and bottomBarHeight to dp
-
Change the parameter type from int to double
-
setWidth,setHeight,setSp. for example: you can use setWidth(100) or setWidth(100.0)
-
Fix the wrong way of using
-
It is recommended to use
ScreenUtil.getInstance()
instead ofScreenUtil()
, for example:ScreenUtil.getInstance().setHeight(25)
instead ofScreenUtil().setHeight(25)
- Fix bugs that default fonts change with the system
-
Modify the font to change with the system zoom mode. The default value is false.
-
setSp(int fontSize, [allowFontScaling = false]) => allowFontScaling ? setWidth(fontSize) * _textScaleFactor : setWidth(fontSize);
-
add two Properties
-
///Current device width dp
-
///当前设备宽度 dp
-
ScreenUtil.screenWidthDp
-
///Current device height dp
-
///当前设备高度 dp
-
ScreenUtil.screenHeightDp
- Fix font adaptation issues
- Optimize font adaptation method
- Perfect documentation
- Width is enlarged relative to the design draft => The ratio of font and width to the size of the design
- Height is enlarged relative to the design draft => The ratio of height width to the size of the design
- Add font size adaptation
- Optimize documentation
- Fixed bug when releasing
- first version