renderFalse

open fun Flow<Boolean>.renderFalse(into: Tag<HTMLElement>? = null, content: Tag<*>.() -> Unit)

Renders the data of a boolean Flow only if its value is false.

Receiver

Flow containing the data

Parameters

into

target to mount content to. If not set a child div is added to the Tag this method is called on

content

RenderContext for rendering the data to the DOM

See also