mirror of
https://github.com/Steffo99/twom.git
synced 2024-11-21 15:44:26 +00:00
Add three leftover todos
This commit is contained in:
parent
b66cb24a7f
commit
79f4af90c3
3 changed files with 3 additions and 0 deletions
|
@ -18,6 +18,7 @@ fun InviteFAB(
|
|||
onClick: () -> Unit = {},
|
||||
onUserSelected: (userId: String) -> Unit = {},
|
||||
) {
|
||||
// TODO: Hide if unprivileged
|
||||
ExtendedFloatingActionButton(
|
||||
modifier = modifier,
|
||||
onClick = { onClick() },
|
||||
|
|
|
@ -134,6 +134,7 @@ fun MemberListItem(
|
|||
expanded = expanded,
|
||||
onDismissRequest = { expanded = false }
|
||||
) {
|
||||
// TODO: Also hide if unprivileged
|
||||
if (member.userId != session.myUserId) {
|
||||
DropdownMenuItem(
|
||||
text = {
|
||||
|
|
|
@ -117,6 +117,7 @@ fun RoomIconButton(
|
|||
}
|
||||
|
||||
Box(modifier) {
|
||||
// TODO: Figure out a way to clip this with a different shape
|
||||
IconButton(
|
||||
onClick = { expanded = true },
|
||||
) {
|
||||
|
|
Loading…
Reference in a new issue