封装:
class ZText extends StatelessWidget {
String str;
Color color;
double fontSize;
double fontWeight;
ZText(this.str, this.color, this.fontSize, this.fontWeight);
@override
Widget build(BuildContext context) {
return Text(str,
style: TextStyle(
color: color,
fontSize: ScreenUtil().setSp(fontSize),
fontWeight: fontWeight == 1 ? FontWeight.w100 : FontWeight.w600));
}
}
使用:
ZText('广州', Colors.black, 32, 2)