gpt4 book ai didi

flutter - 我们可以在 flutter 中设置 SpanText 可点击吗?

转载 作者:行者123 更新时间:2023-12-03 08:56:14 27 4
gpt4 key购买 nike


RichText(
text: TextSpan(
text: 'NEW USER ?',
style: TextStyle(color: Colors.grey),
children: <TextSpan>[
TextSpan(
text: ' SIGN UP',
style: TextStyle(color: Colors.blue),
)
],
),
),

在这里,我想在点击“注册”时做一些事情。

最佳答案

TextSpan 具有用于点击给定小部件的 recognizer 属性。

TextSpan(
text: ' SIGN UP',
style: TextStyle(color: Colors.blue),
)
recognizer: TapGestureRecognizer()
..onTap = () {
// do something here
}),
)

关于flutter - 我们可以在 flutter 中设置 SpanText 可点击吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55085982/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com