赞
踩
最近写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组件三个点调整颜色问题,虽然不是什么大问题,先记录下来,希望能帮助到你!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。