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

View File

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