Flutter Text.rich富文本
2019-11-13 本文已影响0人
倪大头
child: Text.rich(
TextSpan(
text: '在线咨询',
style: TextStyle(color: Colors.red, fontSize: 13),
children: <TextSpan>[
TextSpan(
text: ',等你消息',
style:TextStyle(color: Colors.black54),
recognizer: TapGestureRecognizer()..onTap=() {
print('你好吗');
},
),
],
),
),
每一段TextSpan都可以设置不同的效果和点击事件