mirror of
https://github.com/Steffo99/twom.git
synced 2024-11-21 23:54: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 = {},
|
onClick: () -> Unit = {},
|
||||||
onUserSelected: (userId: String) -> Unit = {},
|
onUserSelected: (userId: String) -> Unit = {},
|
||||||
) {
|
) {
|
||||||
|
// TODO: Hide if unprivileged
|
||||||
ExtendedFloatingActionButton(
|
ExtendedFloatingActionButton(
|
||||||
modifier = modifier,
|
modifier = modifier,
|
||||||
onClick = { onClick() },
|
onClick = { onClick() },
|
||||||
|
|
|
@ -134,6 +134,7 @@ fun MemberListItem(
|
||||||
expanded = expanded,
|
expanded = expanded,
|
||||||
onDismissRequest = { expanded = false }
|
onDismissRequest = { expanded = false }
|
||||||
) {
|
) {
|
||||||
|
// TODO: Also hide if unprivileged
|
||||||
if (member.userId != session.myUserId) {
|
if (member.userId != session.myUserId) {
|
||||||
DropdownMenuItem(
|
DropdownMenuItem(
|
||||||
text = {
|
text = {
|
||||||
|
|
|
@ -117,6 +117,7 @@ fun RoomIconButton(
|
||||||
}
|
}
|
||||||
|
|
||||||
Box(modifier) {
|
Box(modifier) {
|
||||||
|
// TODO: Figure out a way to clip this with a different shape
|
||||||
IconButton(
|
IconButton(
|
||||||
onClick = { expanded = true },
|
onClick = { expanded = true },
|
||||||
) {
|
) {
|
||||||
|
|
Loading…
Reference in a new issue