FloatingMessagePresenter

Represents a presenter responsible for managing the presentation of floating messages on call UI.

This interface defines the contract for displaying and dismissing floating messages within the application's user interface.

Inheritors

Properties

Link copied to clipboard
abstract val floatingMessages: SharedFlow<FloatingMessage?>

A SharedFlow emitting the currently presented floating message, or null if no message is presented.

Functions

Link copied to clipboard
abstract fun dismiss(message: FloatingMessage)

Dismisses a floating message.

Link copied to clipboard
abstract fun present(message: FloatingMessage)

Presents a floating message to the user.