Leave space: Fix UI issue on top bar.

This commit is contained in:
Benoit Marty
2025-09-30 15:32:59 +02:00
committed by Benoit Marty
parent 21aa94aa4a
commit f726b2a9a4

View File

@@ -71,6 +71,12 @@ fun LeaveSpaceView(
) {
Scaffold(
modifier = modifier,
topBar = {
LeaveSpaceHeader(
state = state,
onBackClick = onCancel,
)
},
containerColor = ElementTheme.colors.bgCanvasDefault,
) { padding ->
Column(
@@ -81,10 +87,6 @@ fun LeaveSpaceView(
.fillMaxSize()
.padding(16.dp)
) {
LeaveSpaceHeader(
state = state,
onBackClick = onCancel,
)
LazyColumn(
modifier = Modifier
.weight(1f),