1
Fork 0
mirror of https://github.com/Steffo99/twom.git synced 2024-11-21 23:54:26 +00:00

Wrap RoomListItem in a Box to have the DropdownMenu display correctly

This commit is contained in:
Steffo 2024-01-21 15:42:19 +01:00
parent 395709cc28
commit 6abfb78ad6
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -71,6 +71,8 @@ fun RoomListItem(
Log.d("Main", "Successfully left room `$roomId`!")
}
Box {
ListItem(
modifier = Modifier.combinedClickable(
onClick = { openRoom() },
@ -115,4 +117,6 @@ fun RoomListItem(
}
)
}
}
}