Chat Options
Overview
Creating ChatOption
Using Builder
val chatOption = ChatOption.Builder()
.chatStyle(
ChatStyle(
textColor = Color.WHITE,
textShadow = TextShadow(
color = Color.BLACK,
offsetX = 1f,
offsetY = 1f,
radius = 2f
)
)
)
.build()Using DSL (Recommended)
Properties
chatStyle
ChatStyle Properties
textColor
textShadow
TextShadow Properties
color
offsetX
offsetY
radius
Default Values
Property
Default Value
Complete Examples
Default Chat Style
No Shadow (Clean Look)
Important Notes
See Also
Last updated
Was this helpful?