public sealed interface RemoteModifier
An ordered, immutable collection of modifier elements for Remote Compose.
RemoteModifier is the remote-first equivalent of androidx.compose.ui.Modifier. It is used to decorate or augment remote composables (e.g., adding padding, background, or click listeners).
Remote modifiers are designed to be encoded and evaluatable on a remote compose player.
Functions
then
public infix fun then(other: RemoteModifier): RemoteModifier
Concatenates this modifier with another.
Returns a RemoteModifier representing this modifier followed by other in sequence.
Members
Companion
public companion object : RemoteModifier
The RemoteModifier companion object is the empty, default, or starter RemoteModifier that contains no elements. Use it to create a new RemoteModifier using modifier extension factory functions.
Example: RemoteModifier.padding(16.rdp).background(RemoteColor.Red)
Functions
then
override infix fun then(other: RemoteModifier): RemoteModifier
toString
override fun toString(): String