showing ellipses when expanded
StevenAtAskAttis opened this issue · 3 comments
StevenAtAskAttis commented
royabousamra commented
Same thing here.
saelco commented
I'm using trimExpandedText: '' even though the "show less" phrase disappears
namphanhoang commented
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,
);