文章目录
- 前言
- 一、相关代码
- 总结
前言
最近写flutter项目,在使用ExpandableText时解决了一些问题,下面是解决方案,希望帮助到大家。
一、相关代码
1、代码如下:
2、我们设置linkColor就能设置ExpandableText三个点的颜色
ExpandableText('简介:${TextUtil.isEmpty(profile) ? '没有简介' : profile}',style: context.titleStyle?.copyWith(fontSize: 12.s, fontWeight: FontWeight.w500),expandText: '全部',collapseText: '收起',maxLines: 3,animation: true,expandStyle: context.textStyle?.copyWith(fontSize: 12.s, fontWeight: FontWeight.w500),linkColor: context.textStyle?.color,),
总结
这就是Flutter解决ExpandableText组件三个点调整颜色问题,虽然不是什么大问题,先记录下来,希望能帮助到你!