feat: make FAB circular on Marmot Groups screen

Matches the CircleShape used by FABs on other screens.

https://claude.ai/code/session_013dhfy18dfuSYN8khXiLLBb
This commit is contained in:
Claude
2026-04-06 14:16:06 +00:00
parent 754568cf13
commit 3e19143e2c
@@ -30,6 +30,7 @@ import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.filled.ArrowBack
import androidx.compose.material.icons.filled.Add
@@ -128,7 +129,7 @@ fun MarmotGroupListScreen(
},
snackbarHost = { SnackbarHost(snackbarHostState) },
floatingActionButton = {
FloatingActionButton(onClick = { nav.nav(Route.CreateMarmotGroup) }) {
FloatingActionButton(onClick = { nav.nav(Route.CreateMarmotGroup) }, shape = CircleShape) {
Icon(Icons.Default.Add, contentDescription = "Create Group")
}
},