Remove useless (?) Column.

This commit is contained in:
Benoit Marty 2023-06-21 17:46:56 +02:00 committed by Benoit Marty
parent dc6a65a8db
commit 35fbdff907

View file

@ -192,14 +192,10 @@ fun RoomListContent(
)
},
content = { padding ->
Column(
LazyColumn(
modifier = Modifier
.padding(padding)
.consumeWindowInsets(padding)
) {
LazyColumn(
modifier = Modifier
.weight(1f)
.nestedScroll(nestedScrollConnection),
state = lazyListState,
) {
@ -260,7 +256,6 @@ fun RoomListContent(
}
}
}
}
},
floatingActionButton = {
FloatingActionButton(