Display feeds count next to folder name in FeedTab

This commit is contained in:
Shinokuni 2024-10-10 17:32:25 +02:00
parent 70a81235b4
commit 7dad293771
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ fun FolderExpandableItem(
MediumSpacer()
Text(
text = folder.name.orEmpty(),
text = folder.name.orEmpty() + if (feeds.isNotEmpty()) " (${feeds.size})" else "",
style = MaterialTheme.typography.bodyLarge,
maxLines = 1,
overflow = TextOverflow.Ellipsis,