KalugaButton
Types
Link copied to clipboard
data class Plain(val text: String, val style: KalugaButtonStyle.WithText<*>, val isEnabled: Boolean = true, val action: () -> Unit) : KalugaButton.WithText
A KalugaButton.WithText that displays a regular text
Link copied to clipboard
data class Styled(val text: StyledString, val style: KalugaButtonStyle.WithText<*>, val isEnabled: Boolean = true, val action: () -> Unit) : KalugaButton.WithText
A KalugaButton.WithText that displays a StyledString
Link copied to clipboard
data class WithoutText(val style: KalugaButtonStyle.WithoutText<*>, val isEnabled: Boolean = true, val action: () -> Unit) : KalugaButton
A KalugaButton with a KalugaButton.WithoutText that does not display any text
Link copied to clipboard
A KalugaButton with a KalugaButton.WithText that displays text