// text 详解
class MyText extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Text(
"Hello World!\n My name`s Feng Ying Jie\n我们都有一个家名字叫中国,家里兄弟姐妹都很多 景色也不错",
textAlign: TextAlign.center,
maxLines: 4,
overflow: TextOverflow.fade,
style: TextStyle(
fontSize: 25.0,
color: Colors.pink,
decoration: TextDecoration.underline,
decorationStyle: TextDecorationStyle.wavy,
),
);
}
}
效果如下:

网友评论