size_extension.dart 275 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import 'flutter_screenutil.dart'; extension SizeExtension on num { num get w => ScreenUtil().setWidth(this); num get h => ScreenUtil().setHeight(this); num get sp => ScreenUtil().setSp(this); num get ssp => ScreenUtil().setSp(this, allowFontScalingSelf: true); }