mirror of https://github.com/readrops/Readrops.git
Display feeds count next to folder name in FeedTab
This commit is contained in:
parent
70a81235b4
commit
7dad293771
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue