欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Flutter组件之一行多种颜色文字组件(RichText)

程序员文章站 2022-06-06 19:56:35
...
RichText(
            text: TextSpan(
              children: <TextSpan>[
                TextSpan(
                  text: '你好啊',
                  style: TextStyle(
                    color: Color(0xffff0000),
                    fontSize: 20.0,
                  ),
                ),
                TextSpan(
                  text: '我是很牛逼的人物哦!',
                  style: TextStyle(
                    color: Color(0xff00ff00),
                    fontSize: 20.0,
                  ),
                  recognizer: TapGestureRecognizer()
                    ..onTap = () async {
                      print('点击事件');
                      //这里做点击事件
//                        String url = 'http://www.baidu.com';
//                        if (await canlaunch(url)){
//                          await launch(url);
//                        }
                    },
                ),
              ],
            ),
          ),

 

相关标签: 组件