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