🌈 Create new beautiful Compose Gradients with our new wesite ->
Interface

RemoteModifier

An ordered, immutable collection of modifier elements for Remote Compose.

Source set: Android
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

Source set: Android
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

Source set: Android
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

Source set: Android
override infix fun then(other: RemoteModifier): RemoteModifier

toString

Source set: Android
override fun toString(): String

Content updated: