这是我的代码。
Center(
child: SingleChildScrollView(
child: Container(
child: RichText(
text: TextSpan(
//style: DefaultTextStyle.of(context).style,
children: [
TextSpan(
text: 'URL IS IN HERE.COM!\n',
style: TextStyle(letterSpacing: 1, fontSize: 26.0, fontWeight: FontWeight.bold, color: Colors.black)
),
...
我想点击文本字符串('URL IS IN HERE.COM!)并让它在我的 webview 小部件中打开?