fix(concord): round the create-community FAB to match app convention

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 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01CzJ2Cwo8tg4oZq43oRa3ig
This commit is contained in:
Claude
2026-07-11 01:08:39 +00:00
parent 1cb930f941
commit 7ebbd2e46e
@@ -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 ->