ScopedElement

An Element whose usage is scoped to a parent widget.

For example, a Column widget may provide a HorizontalAlignment element for its children.

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.