ExoPlayerSubtitleView
fun ExoPlayerSubtitleView(player: Player, modifier: Modifier = Modifier, captionStyle: CaptionStyleCompat? = null, subtitleTextSize: SubtitleTextSize? = null)
Composable basic version of ExoPlayerSubtitleView from Media3 (Exoplayer) that listen to Player Cues
Parameters
player
The Player to get Cues
modifier
The modifier to be applied to the layout.
captionStyle
Caption style of the subtitle texts. It will override any user-preferred style.
subtitleTextSize
Text size of the subtitle texts. It will override any user-preferred size.
fun ExoPlayerSubtitleView(modifier: Modifier = Modifier, cues: List<Cue>? = null, captionStyle: CaptionStyleCompat? = null, subtitleTextSize: SubtitleTextSize? = null)
Composable basic version of ExoPlayerSubtitleView from Media3 (Exoplayer)
Parameters
modifier
The modifier to be applied to the layout.
cues
The cues to displays Player.getCurrentCues
captionStyle
Caption style of the subtitle texts. It will override any user-preferred style.
subtitleTextSize
Text size of the subtitle texts. It will override any user-preferred size.