Leave space: Fix UI issue on top bar.
This commit is contained in:
parent
21aa94aa4a
commit
f726b2a9a4
1 changed files with 6 additions and 4 deletions
|
|
@ -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),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue