Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
lizhuoyuan committed Jan 14, 2019
1 parent cfbefaa commit 2c0600a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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))),
),
],
),
Expand Down
4 changes: 2 additions & 2 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -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),
),
),
),
Expand All @@ -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),
)),
),
],
Expand Down

0 comments on commit 2c0600a

Please sign in to comment.