UnscopedElement

An Element whose usage is available on any widget.

For example, a BackgroundColor element is applicable to all widgets.

See also

Functions

Link copied to clipboard
open override fun forEach(block: (Modifier.Element) -> Unit)

Iterates over all Elements in this Modifier.

Link copied to clipboard
open override fun forEachScoped(block: (Modifier.ScopedElement) -> Unit)

Iterates over all ScopedElements in this Modifier.

Link copied to clipboard
open override fun forEachUnscoped(block: (Modifier.UnscopedElement) -> Unit)

Iterates over all UnscopedElements in this Modifier.

Link copied to clipboard
open infix fun then(other: Modifier): Modifier

Concatenates this modifier with another.