Flutter-Text组件

1. 普通的文本组件

Text("默认样式文本组件")

2. 给文本组件添加一些属性

eg:
Text(
"测试文本"*10,
textAlign: TextAlign.start,
maxLines: 1,
overflow: TextOverflow.ellipsis,
textScaleFactor: 2,
style: TextStyle(
color: Colors.yellow,
fontSize: 7.0,
background: Paint()..color = Colors.blue,
decoration: TextDecoration.underline
),
),

textAligin:属性定义文本对齐方式,start、end、cente

Flutter-Text组件最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/7032.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>