mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-10-01 20:35:10 +02:00
Removing unsupported click on messages
This commit is contained in:
@@ -1,6 +1,5 @@
|
|||||||
package com.vitorpamplona.amethyst.ui.note
|
package com.vitorpamplona.amethyst.ui.note
|
||||||
|
|
||||||
import androidx.compose.foundation.clickable
|
|
||||||
import androidx.compose.foundation.layout.Arrangement
|
import androidx.compose.foundation.layout.Arrangement
|
||||||
import androidx.compose.foundation.layout.Column
|
import androidx.compose.foundation.layout.Column
|
||||||
import androidx.compose.foundation.layout.Row
|
import androidx.compose.foundation.layout.Row
|
||||||
@@ -40,11 +39,7 @@ fun ChatroomMessageCompose(baseNote: Note, accountViewModel: AccountViewModel, n
|
|||||||
val authorState by note.author!!.live.observeAsState()
|
val authorState by note.author!!.live.observeAsState()
|
||||||
val author = authorState?.user
|
val author = authorState?.user
|
||||||
|
|
||||||
Column(modifier =
|
Column() {
|
||||||
Modifier.clickable(
|
|
||||||
onClick = { navController.navigate("User/${note.idHex}") }
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
var backgroundBubbleColor: Color
|
var backgroundBubbleColor: Color
|
||||||
var alignment: Arrangement.Horizontal
|
var alignment: Arrangement.Horizontal
|
||||||
var shape: Shape
|
var shape: Shape
|
||||||
|
Reference in New Issue
Block a user