Flutter组件之一行多种颜色文字组件(RichText)
程序员文章站
2022-06-06 19:56:35
...
RichText(
text: TextSpan(
children: <TextSpan>[
TextSpan(
text: '你好啊',
style: TextStyle(
color: Color(0xffff0000),
fontSize: 20.0,
),
),
TextSpan(
text: '我是很牛逼的人物哦!',
style: TextStyle(
color: Color(0xff00ff00),
fontSize: 20.0,
),
recognizer: TapGestureRecognizer()
..onTap = () async {
print('点击事件');
//这里做点击事件
// String url = 'http://www.baidu.com';
// if (await canlaunch(url)){
// await launch(url);
// }
},
),
],
),
),
上一篇: mysql存储过程示例
下一篇: React Native 小组件