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

RemoteState.Domain

Represents the domain (namespace) for named remote states.

Source set: Android
public open class Domain constructor(@get:RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) public val coreDomain: String?)

Represents the domain (namespace) for named remote states.

Named states are used to identify variables that can be updated externally or shared across different parts of a remote document.

Properties

prefix

Source set: Android
public val prefix: String

A string representation of the domain followed by a colon separator, or an empty string if the domain is null. This is used to namespace named remote states.

Functions

toString

Source set: Android
override fun toString(): String

equals

Source set: Android
override fun equals(other: Any?): Boolean

hashCode

Source set: Android
override fun hashCode(): Int

Members

User

Source set: Android
public object User : Domain(RemoteDomains.USER.toString())

The default user-defined domain.

Recommended for application-specific state.

System

Source set: Android
public object System : Domain(RemoteDomains.SYSTEM.toString())

The system-defined domain, used for platform-level or framework state.

Content updated: