make unread badge max out at 9999+ not 99+

This commit is contained in:
n-kam
2026-03-27 01:39:52 +03:00
committed by GitHub
parent 411cd3f8d2
commit f9cb0c80a5
+1 -1
View File
@@ -7,7 +7,7 @@ class UnreadBadge extends StatelessWidget {
@override
Widget build(BuildContext context) {
final display = count > 99 ? '99+' : count.toString();
final display = count > 9999 ? '9999+' : count.toString();
return Container(
padding: const EdgeInsets.symmetric(horizontal: 6, vertical: 2),
decoration: BoxDecoration(