LiZhuoyuan
Committed by GitHub

Update README.md

@@ -207,13 +207,13 @@ import 'package:flutter_screenutil/flutter_screenutil.dart'; @@ -207,13 +207,13 @@ import 'package:flutter_screenutil/flutter_screenutil.dart';
207 'My font size is 14px on the design draft and will not change with the system.', 207 'My font size is 14px on the design draft and will not change with the system.',
208 style: TextStyle( 208 style: TextStyle(
209 color: Colors.black, 209 color: Colors.black,
210 - fontSize: ScreenUtil().setSp(14, false), 210 + fontSize: ScreenUtil().setSp(14),
211 )), 211 )),
212 Text( 212 Text(
213 'My font size is 14px on the design draft and will change with the system.', 213 'My font size is 14px on the design draft and will change with the system.',
214 style: TextStyle( 214 style: TextStyle(
215 color: Colors.black, 215 color: Colors.black,
216 - fontSize: ScreenUtil().setSp(14), 216 + fontSize: ScreenUtil().setSp(14,true),
217 )), 217 )),
218 ], 218 ],
219 ) 219 )