From 554fa16743dee645549fa198afdd84375cbbca4f Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 22 Jun 2026 17:20:10 +0000 Subject: [PATCH] feat: add 3-dot options menu to apps feed card --- .../vitorpamplona/amethyst/ui/note/types/SoftwareApp.kt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/types/SoftwareApp.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/types/SoftwareApp.kt index b6830f35c2..58c631d61c 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/types/SoftwareApp.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/types/SoftwareApp.kt @@ -77,6 +77,7 @@ import com.vitorpamplona.amethyst.ui.note.LinkIcon import com.vitorpamplona.amethyst.ui.note.NoteAuthorPicture import com.vitorpamplona.amethyst.ui.note.NoteUsernameDisplay import com.vitorpamplona.amethyst.ui.note.ReactionsRow +import com.vitorpamplona.amethyst.ui.note.elements.MoreOptionsButton import com.vitorpamplona.amethyst.ui.screen.loggedIn.AccountViewModel import com.vitorpamplona.amethyst.ui.stringRes import com.vitorpamplona.amethyst.ui.theme.QuoteBorder @@ -165,6 +166,14 @@ fun RenderSoftwareApplication( Spacer(Modifier.width(8.dp)) VersionChip(version) } + + Spacer(Modifier.width(4.dp)) + MoreOptionsButton( + baseNote = note, + editState = null, + accountViewModel = accountViewModel, + nav = nav, + ) } if (description.isNotBlank()) {