Make specific parts of a text clickable in flutter [duplicate]
Use RichText with TextSpan and GestureRecognizer. With GestureRecognizer you can detect tap, double tap, long press and etc. 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 … Read more