Showing
3 changed files
with
5 additions
and
2 deletions
1 | +# 5.0.2+1 | ||
2 | +- fix splitScreenMode to false | ||
3 | + | ||
1 | # 5.0.2 | 4 | # 5.0.2 |
2 | 5 | ||
3 | - add "minTextAdapt" param , Font adaptation is based on the minimum value of width and height or only based on width(default) | 6 | - add "minTextAdapt" param , Font adaptation is based on the minimum value of width and height or only based on width(default) |
@@ -5,7 +5,7 @@ class ScreenUtilInit extends StatelessWidget { | @@ -5,7 +5,7 @@ class ScreenUtilInit extends StatelessWidget { | ||
5 | ScreenUtilInit({ | 5 | ScreenUtilInit({ |
6 | required this.builder, | 6 | required this.builder, |
7 | this.designSize = ScreenUtil.defaultSize, | 7 | this.designSize = ScreenUtil.defaultSize, |
8 | - this.splitScreenMode = true, | 8 | + this.splitScreenMode = false, |
9 | this.minTextAdapt = false, | 9 | this.minTextAdapt = false, |
10 | Key? key, | 10 | Key? key, |
11 | }) : super(key: key); | 11 | }) : super(key: key); |
1 | name: flutter_screenutil | 1 | name: flutter_screenutil |
2 | description: A flutter plugin for adapting screen and font size.Guaranteed to look good on different models | 2 | description: A flutter plugin for adapting screen and font size.Guaranteed to look good on different models |
3 | -version: 5.0.2 | 3 | +version: 5.0.2+1 |
4 | homepage: https://github.com/OpenFlutter/flutter_screenutil | 4 | homepage: https://github.com/OpenFlutter/flutter_screenutil |
5 | 5 | ||
6 | environment: | 6 | environment: |
-
Please register or login to post a comment