mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 23:47:02 +05:30
app: restrict tags to just the first 4
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
52e010d79b
commit
ac336efa33
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ fun LazyItemScope.LobstersItem(
|
|||
modifier = Modifier.padding(vertical = 8.dp),
|
||||
horizontalArrangement = Arrangement.spacedBy(8.dp),
|
||||
) {
|
||||
post.tags.forEach { tag ->
|
||||
post.tags.take(4).forEach { tag ->
|
||||
Text(
|
||||
text = tag,
|
||||
modifier = Modifier
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue