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);
// }
},
),
],
),
),