我们可以设置一个可轻拍的SpanText吗?

时间:2019-03-10 08:50:11

标签: flutter


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

在这里,我想在点击“注册”时做点什么。

1 个答案:

答案 0 :(得分:0)

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

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