PlayerDeck Options
Overview
Creating PlayerDeckOption
Using Builder
val playerDeckOption = PlayerDeckOption.Builder()
.showFullScreenIcon(true)
.showShareButton(true)
.showSubtitle(true)
.build()Using DSL (Recommended)
val viewOptions = viewOptions {
playerDeckOptions {
showFullScreenIcon(true)
showShareButton(true)
showSubtitle(true)
}
}Properties
showFullScreenIcon
showShareButton
showSubtitle
subtitleBackgroundColor
subtitleTextColor
Default Values
Property
Default Value
Complete Examples
Standard PlayerDeck Configuration
PlayerDeck with Subtitles
Important Notes
See Also
Last updated
Was this helpful?