From 7ebbd2e46e6b16015e2fbf90397ea78d8b279a18 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 11 Jul 2026 01:08:39 +0000 Subject: [PATCH] fix(concord): round the create-community FAB to match app convention MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The hub's create FAB fell back to Material3's default rounded-square shape; every other FAB in the app (RelayGroupChannelListScreen, MarmotGroupListScreen, NewNoteButton, …) uses shape = CircleShape with a 24dp icon. Match it. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01CzJ2Cwo8tg4oZq43oRa3ig --- .../chats/publicChannels/concord/ConcordHomeScreen.kt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/chats/publicChannels/concord/ConcordHomeScreen.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/chats/publicChannels/concord/ConcordHomeScreen.kt index 48a9926176..7db61c725f 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/chats/publicChannels/concord/ConcordHomeScreen.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/chats/publicChannels/concord/ConcordHomeScreen.kt @@ -88,8 +88,12 @@ fun ConcordHomeScreen( ) }, floatingActionButton = { - FloatingActionButton(onClick = { nav.nav(Route.ConcordCreate) }) { - SymbolIcon(symbol = MaterialSymbols.Add, contentDescription = stringRes(R.string.concord_create_title)) + FloatingActionButton(onClick = { nav.nav(Route.ConcordCreate) }, shape = CircleShape) { + SymbolIcon( + symbol = MaterialSymbols.Add, + contentDescription = stringRes(R.string.concord_create_title), + modifier = Modifier.size(24.dp), + ) } }, ) { padding ->