new FittedBox(
fit: BoxFit.contain,
alignment: Alignment.bottomCenter,
child: new Text(
article.name,
textAlign: TextAlign.center,
style:
TextStyle(fontSize: 14, color: Color(0xff2e2e2e)),// 系统默认14,根据大小缩放
),
)
系统默认字体大小是14,根据内容的宽度进行自动缩放字体。