Package-level declarations

Basic chat functionality provided through the rememberChat composable function.

Types

Link copied to clipboard
class Chat(localParticipant: LocalParticipant, dataHandler: DataHandler)

Chat state for sending messages through LiveKit.

Link copied to clipboard
@Serializable
data class ChatMessage(val timestamp: Long, val message: String, val participant: Participant? = null)

A chat message.

Functions

Link copied to clipboard
fun rememberChat(room: Room = RoomLocal.current): Chat

Creates a Chat that is remembered across compositions.