Element

sealed interface Element : Modifier

A single element contained within a Modifier chain.

Inheritors

Functions

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

Iterates over all Elements in this Modifier.

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

Iterates over all ScopedElements in this Modifier.

Link copied to clipboard

Iterates over all UnscopedElements in this Modifier.

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

Concatenates this modifier with another.