responsiveWithScaling property
TextStyle
get
responsiveWithScaling
Make text style responsive with font scaling
Implementation
TextStyle get responsiveWithScaling {
return copyWith(
fontSize: fontSize != null
? ScreenUtil.instance.setSp(fontSize!, allowFontScaling: true)
: null,
);
}