Can anyone please help to implement this feature of Gmail that shows the counter to number of emails hidden when the email list becomes large ? I want to implement this in row widget where instead of being scrollable extra elements count is shown when overflow occurs.Gmail shows +15 counter for hidden emails
Show counter to number of elements hidden when overflow occurs in flutter row widget
555 Views Asked by Radha Kumari At
2
There are 2 best solutions below
0

I was facing a similar issue. I found a way to implement the Overflow count text. Sample image You basically have to paint the overflow text, and get its width like below
final TextPainter textPainter = TextPainter(
text: TextSpan(text: text, style: style),
textDirection: TextDirection.ltr,
textScaleFactor: WidgetsBinding.instance.window.textScaleFactor,
)..layout();
var textSize = textPainter.size;
textSize.width;
Then subtract that from the width available. Lets call it x. Then create a sum of width for each row item(using TextPainter.layout() method mentioned above), till its value is less than x. This way you'll know how many items can be shown in the row.
I have created a Flutter library to help with this.
I was Curious to give a try to achieve the same effect, as asked.
Just in case, If anyone want a start for writing a custom one, then below code may help.
Here is my
Code
, Feel free to give any suggestions, (For Nowdelete
button in chips is not working bcoz of some logic problem, I will make it work another day)How it works:
Check this package, if you want to use custom package for ease.