2021-12-04 Flutter►第九章:框架升级 数据类 [toc] 数据类为了统一,各数据类(包含宏)分别使用如下: 一、颜色暂无 二、TextStyle1234567891011121314import 'package:flutter_effect/flutter_effect.dart'; return Column( children: <Widget>[ Text( 'Bold', style: BoldTextStyle(fontSize: 17, color: Colors.red), // bold ), Text( 'Medium', style: MediumTextStyle(fontSize: 17, color: Colors.red), // medium ), ], ); Newer Flutter空安全 Older 组件的使用-Cache