flutter学习笔记:文本多行并带不同效果---RichText的用法

要实现如下图的效果,实现文字转行并部分带点击,就要用到RichText

控件RichText包含TextSpan子组件,TextSpan子组件可包含一组的TextSpan子组件,TextSpan子组件通过stye设置不同文本样式,通过recognizer实现点击等各种事件

代码:

 RichText(
    text: TextSpan(
        text: '本人同意领取赠险并许可保险公司沟通赠险生效事宜,已阅读',
        style: TextStyle(color: Colors.black, fontSize: 13),
        children: [
             TextSpan(
                 text: '《活动规则》',
                 style:TextStyle(color: Color(0xFF008EFF), fontSize: 13),
                        recognizer: TapGestureRecognizer()
                          ..onTap = () async {
                            AgreementDialog.showActivityDialog(context);
                      }),
              TextSpan(
                  text: '及',
                  style: TextStyle(color: Colors.black, fontSize: 13),
                    ),
               TextSpan(
                   text: '《信息安全说明》',
                   style:TextStyle(color: Color(0xFF008EFF), fontSize: 13),
                        recognizer: TapGestureRecognizer()
                          ..onTap = () async {
                            AgreementDialog.showSecurityDialog(context);
                       }),
                  ],
                ),
          )

 

你可能感兴趣的:(flutter)