toolbar

fun Container.toolbar(size: ButtonGroupSize? = null, spacing: Int = 2, vertical: Boolean = false, classes: Set<String>? = null, className: String? = null, init: Toolbar.() -> Unit? = null): Toolbar

DSL builder extension function.

It takes the same parameters as the constructor of the built component.

fun <S> Container.toolbar(state: ObservableState<S>, size: ButtonGroupSize? = null, spacing: Int = 2, vertical: Boolean = false, classes: Set<String>? = null, className: String? = null, init: Toolbar.(S) -> Unit): Toolbar

DSL builder extension function for observable state.

It takes the same parameters as the constructor of the built component.