simple Panel
fun Container.simplePanel(classes: Set<String>? = null, className: String? = null, init: SimplePanel.() -> Unit? = null): SimplePanel
Content copied to clipboard
DSL builder extension function.
It takes the same parameters as the constructor of the built component.
fun <S> Container.simplePanel(state: ObservableState<S>, classes: Set<String>? = null, className: String? = null, init: SimplePanel.(S) -> Unit): SimplePanel
Content copied to clipboard
DSL builder extension function for observable state.
It takes the same parameters as the constructor of the built component.
fun Container.simplePanel(vararg styles: Style, init: SimplePanel.() -> Unit? = null): SimplePanel
Content copied to clipboard
DSL builder extension function with Style support