TextDecoration

class TextDecoration(    val lines: Set<TextDecoration.Line> = emptySet(),     val color: Color? = null,     val style: TextDecoration.Style = Solid,     val thickness: TextDecoration.Thickness? = null)

Created by Nicholas Eddy on 10/31/17.

Constructors

Link copied to clipboard
constructor(    lines: Set<TextDecoration.Line> = emptySet(),     color: Color? = null,     style: TextDecoration.Style = Solid,     thickness: TextDecoration.Thickness? = null)

Types

Link copied to clipboard
object Companion
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
sealed class Thickness

Properties

Link copied to clipboard
val color: Color? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int

Inherited functions

Link copied to clipboard
operator fun TextDecoration?.invoke(text: () -> StyledText): StyledText
@JvmName(name = "invokeString")
operator fun TextDecoration?.invoke(text: () -> String): StyledText