RichText(
text: TextSpan(
text: 'NEW USER ?',
style: TextStyle(color: Colors.grey),
children: <TextSpan>[
TextSpan(
text: ' SIGN UP',
style: TextStyle(color: Colors.blue),
)
],
),
),
在这里,我想在点击“注册”时做点什么。
答案 0 :(得分:0)
TextSpan
具有recognizer
属性以点击给定的小部件。
TextSpan(
text: ' SIGN UP',
style: TextStyle(color: Colors.blue),
)
recognizer: TapGestureRecognizer()
..onTap = () {
// do something here
}),
)