navbar

fun Container.navbar(label: String? = null, link: String? = null, type: NavbarType? = null, expand: NavbarExpand? = NavbarExpand.LG, nColor: NavbarColor = NavbarColor.LIGHT, bgColor: BsBgColor = BsBgColor.LIGHT, collapseOnClick: Boolean = false, classes: Set<String>? = null, className: String? = null, init: Navbar.() -> Unit? = null): Navbar

DSL builder extension function.

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

fun <S> Container.navbar(state: ObservableState<S>, label: String? = null, link: String? = null, type: NavbarType? = null, expand: NavbarExpand? = NavbarExpand.LG, nColor: NavbarColor = NavbarColor.LIGHT, bgColor: BsBgColor = BsBgColor.LIGHT, collapseOnClick: Boolean = false, classes: Set<String>? = null, className: String? = null, init: Navbar.(S) -> Unit): Navbar

DSL builder extension function for observable state.

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