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