jonataslaw / readmore

A Flutter plugin than allow expand and collapse text dynamically
MIT License
257 stars 79 forks source link

showing ellipses when expanded #10

Open ghost opened 3 years ago

ghost commented 3 years ago

HI, I don't know if this is only with me, but I see the '...' ellipses when the text is expanded.


Screenshot_1606828781


Screenshot_1606828788

royabousamra commented 3 years ago

Same thing here.

saelco commented 3 years ago

I'm using trimExpandedText: '' even though the "show less" phrase disappears

namphanhoang commented 3 years ago

Maybe this issue is by this code, please check it TextSpan _delimiter = TextSpan( text: _readMore ? widget.trimCollapsedText.isNotEmpty ? widget.delimiter : '' : widget.trimExpandedText.isNotEmpty ? widget.delimiter : '', style: _defaultDelimiterStyle, recognizer: TapGestureRecognizer()..onTap = _onTapLink, );