From 2c0600a83584625de7e110e51aab9ba6f9eebe13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=8D=93=E5=8E=9F?= Date: Mon, 14 Jan 2019 16:56:28 +0800 Subject: [PATCH] no message --- README.md | 4 ++-- README_CN.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f2d408e..23200b2 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ import 'package:flutter_screenutil/flutter_screenutil.dart'; 'My width:${ScreenUtil().setWidth(375)}dp', style: TextStyle( color: Colors.white, - fontSize: ScreenUtil().setSp(12, false)), + fontSize: ScreenUtil().setSp(12)), ), ), Container( @@ -190,7 +190,7 @@ import 'package:flutter_screenutil/flutter_screenutil.dart'; child: Text('My width:${ScreenUtil().setWidth(375)}dp', style: TextStyle( color: Colors.white, - fontSize: ScreenUtil().setSp(12, false))), + fontSize: ScreenUtil().setSp(12))), ), ], ), diff --git a/README_CN.md b/README_CN.md index 2b324e6..21097f2 100644 --- a/README_CN.md +++ b/README_CN.md @@ -178,7 +178,7 @@ import 'package:flutter_screenutil/flutter_screenutil.dart'; '我的宽度:${ScreenUtil().setWidth(375)}dp', style: TextStyle( color: Colors.white, - fontSize: ScreenUtil().setSp(12, false), + fontSize: ScreenUtil().setSp(12), ), ), ), @@ -189,7 +189,7 @@ import 'package:flutter_screenutil/flutter_screenutil.dart'; child: Text('我的宽度:${ScreenUtil().setWidth(375)}dp', style: TextStyle( color: Colors.white, - fontSize: ScreenUtil().setSp(12, false), + fontSize: ScreenUtil().setSp(12), )), ), ],