Onsen UI toolbar component.
(js)
BottomToolbar |
An toolbar component located at the bottom of the page. open class BottomToolbar : SimplePanel |
(js)
Toolbar |
A toolbar component. open class Toolbar : SimplePanel |
(js)
ToolbarButton |
A button component designed to be placed inside the toolbar. open class ToolbarButton : CustomTag |
(js)
bottomToolbar |
DSL builder extension function. fun Page.bottomToolbar(classes: Set<String>? = null, className: String? = null, init: (BottomToolbar.() -> Unit)? = null): BottomToolbar |
(js)
toolbar |
DSL builder extension function. fun Page.toolbar(label: String? = null, inline: Boolean? = null, static: Boolean? = null, classes: Set<String>? = null, className: String? = null, init: (Toolbar.() -> Unit)? = null): Toolbar |
(js)
toolbarButton |
DSL builder extension function. fun Div.toolbarButton(content: String? = null, rich: Boolean = false, align: Align? = null, icon: String? = null, disabled: Boolean? = null, classes: Set<String>? = null, className: String? = null, init: (ToolbarButton.() -> Unit)? = null): ToolbarButton |