navForm

fun Navbar.navForm(rightAlign: Boolean = false, classes: Set<String>? = null, className: String? = null, init: NavForm.() -> Unit? = null): NavForm

DSL builder extension function.

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

fun <S> Navbar.navForm(state: ObservableState<S>, rightAlign: Boolean = false, classes: Set<String>? = null, className: String? = null, init: NavForm.(S) -> Unit): NavForm

DSL builder extension function for observable state.

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