文本可滑动,用singleChildScrollView包裹一个Text即可,下面是可滑动,并且有点击事件的文本示例。scrollDirection是滑动方向
SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Text.rich(
TextSpan(
children: [
TextSpan(
text: '欢迎使用这个软件,我们将通过',
style: TextStyle(
fontSize: 14,
color: ColorUtil.text_normal,
),
),
TextSpan(
text: '《用户协议》',
style: TextStyle(
fontSize: 14,
color: Colors.blue,
),
recognizer: TapGestureRecognizer()
..onTap = () =>
{Fluttertoast.showToast(msg: '点击了隐私协议。。')},
),
TextSpan(
text: '及',
style: TextStyle(
fontSize: 14,
color: ColorUtil.text_normal,
),
),
TextSpan(
text: '《隐私政策》',
style: TextStyle(
fontSize: 14,
color: Colors.blue,
),
recognizer: TapGestureRecognizer()
..onTap = () =>
{Fluttertoast.showToast(msg: '点击了用户。。')},
),
TextSpan(
text:
'本网站及相应客户端、自媒体平台、其他主运营网站等(以下统称“CSDN”)是中国知名的IT技术社区,面向IT专业技术人员,提供专业化、集成化的服务。',
style: TextStyle(
fontSize: 14,
color: ColorUtil.text_normal,
),
),
],
),
),
),
|