Skip to content

Commit

Permalink
Display feeds count next to folder name in FeedTab
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinokuni committed Oct 10, 2024
1 parent 70a8123 commit 7dad293
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 7dad293

Please sign in to comment.