VideoPlayerButtonParams
VideoPlayerButtonParams represents the parameters for the buttons in the video player. It is a sealed class that contains different data classes for each button type.
Inheritors
Types
Link copied to clipboard
data class FullScreenParams(val contentDescription: String?, val onClick: () -> Unit) : VideoPlayerButtonParams
FullScreenParams represents the parameters for the full-screen button in the video player.
Link copied to clipboard
data class PlayButtonParams(val isPlaying: Boolean, val contentDescription: String?, val onClick: () -> Unit) : VideoPlayerButtonParams
PlayButtonParams represents the parameters for the play / pause button in the video player.
Link copied to clipboard
data class TranscriptionParams(val contentDescription: String?, val onClick: () -> Unit) : VideoPlayerButtonParams
TranscriptionParams represents the parameters for the transcription button in the video player.