We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c78faf commit e3d06cdCopy full SHA for e3d06cd
examples/chat/shared/src/commonMain/kotlin/SendMessage.kt
@@ -18,6 +18,8 @@ import androidx.compose.runtime.setValue
18
import androidx.compose.ui.Alignment
19
import androidx.compose.ui.Modifier
20
import androidx.compose.ui.graphics.Color
21
+import androidx.compose.ui.input.pointer.PointerIcon
22
+import androidx.compose.ui.input.pointer.pointerHoverIcon
23
import androidx.compose.ui.unit.dp
24
25
@Composable
@@ -43,6 +45,7 @@ fun SendMessage(sendMessage: (String) -> Unit) {
43
45
sendMessage(inputText)
44
46
inputText = ""
47
}
48
+ .pointerHoverIcon(PointerIcon.Hand)
49
.padding(10.dp),
50
verticalAlignment = Alignment.CenterVertically,
51
) {
0 commit comments