文本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Text(
"Hello World!" * 12, // 文本重复次数
textAlign: TextAlign.center, // 文本的对齐方式
maxLines: 1, // 指定文本显示的最大行数
overflow: TextOverflow.ellipsis, // 指定截断方式,默认是直接截断
textScaleFactor: 0.8, // 文本相对于当前字体大小的缩放因子
style: TextStyle(
height: 2, // 行高 具体的行高等于fontSize*height
color: Colors.blue, // 字体颜色
fontSize: 18.0, // 精确指定字体大小
fontFamily: "Courier", // 字体系列
background: new Paint()..color = Colors.yellow, // 文本背景
decoration: TextDecoration.underline, // 文本下划线
decorationStyle: TextDecorationStyle.dashed, // 下划线样式
),
)