Package-level declarations

Types

Link copied to clipboard

Properties

Link copied to clipboard
val NormalButtonVariant: CssStyleVariant<ButtonKind>
Link copied to clipboard
val PrimaryButtonVariant: CssStyleVariant<ButtonKind>

Functions

Link copied to clipboard
@Composable
fun LinkButton(path: String, modifier: Modifier = Modifier, text: String? = null, shape: ButtonShape = ButtonShape.RECTANGLE, primary: Boolean = false, content: @Composable () -> Unit = {})

Create a ThemedButton which acts likes a link, navigating to some target URL when clicked on.

Link copied to clipboard
@Composable
fun ThemedButton(onClick: () -> Unit, modifier: Modifier = Modifier, text: String? = null, shape: ButtonShape = ButtonShape.RECTANGLE, primary: Boolean = false, content: @Composable () -> Unit = {})

Create a Button which is styled with primary or secondary colors.