使文本的特定部分在颤动中可单击

时间:2019-09-28 10:55:35

标签: text flutter dart clickable

我想使文本的一部分变为可轻敲,以便可以在其上调用一个函数。我也想控制可点击文本的样式。在最佳情况下,我还可以将可调整区域的大小增加到例如42px。

enter image description here

我已经研究过flutter_linkify和linkify,但这不是我想要的。我很好奇是否已经在flutter库中建立了一个包,甚至内置了一个包。

2 个答案:

答案 0 :(得分:4)

RichTextTextSpanGestureRecognizer一起使用。使用GestureRecognizer,您可以检测到点击双击长按等。

Widget build(BuildContext context) {
    TextStyle defaultStyle = TextStyle(color: Colors.grey, fontSize: 20.0);
    TextStyle linkStyle = TextStyle(color: Colors.blue);
    return RichText(
      text: TextSpan(
        style: defaultStyle,
        children: <TextSpan>[
          TextSpan(text: 'By clicking Sign Up, you agree to our '),
          TextSpan(
              text: 'Terms of Service',
              style: linkStyle,
              recognizer: TapGestureRecognizer()
                ..onTap = () {
                  print('Terms of Service"');
                }),
          TextSpan(text: ' and that you have read our '),
          TextSpan(
              text: 'Privacy Policy',
              style: linkStyle,
              recognizer: TapGestureRecognizer()
                ..onTap = () {
                  print('Privacy Policy"');
                }),
        ],
      ),
    );
  }

enter image description here

答案 1 :(得分:1)

您可以使用RichTextTextSpan的列表合并为一个文本。

    return RichText(
      text: TextSpan(
        text: 'Hello ',
        style: DefaultTextStyle.of(context).style,
        children: <TextSpan>[
          TextSpan(
              text: 'world!',
              style: TextStyle(fontWeight: FontWeight.bold)),
          TextSpan(
              text: ' click here!',
              recognizer: TapGestureRecognizer()
                ..onTap = () => print('click')),
        ],
      ),
    );