fix: issue where FriendsScreen is not full height
Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
parent
cc7153f38b
commit
984ee0c2fc
|
|
@ -6,6 +6,7 @@ import androidx.compose.foundation.clickable
|
|||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.Row
|
||||
import androidx.compose.foundation.layout.Spacer
|
||||
import androidx.compose.foundation.layout.fillMaxHeight
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.width
|
||||
|
|
@ -101,7 +102,10 @@ fun FriendsScreen(useDrawer: Boolean, onDrawerClicked: () -> Unit) {
|
|||
}
|
||||
}
|
||||
|
||||
Column {
|
||||
Column(
|
||||
modifier = Modifier
|
||||
.fillMaxHeight()
|
||||
) {
|
||||
PageHeader(
|
||||
text = stringResource(R.string.friends),
|
||||
startButtons = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue