interface MutableRemoteState<T : Any?> : RemoteState

Known direct subclasses
MutableRemoteBitmap

A mutable implementation of RemoteBitmap that holds its value in a MutableState.

MutableRemoteBoolean

A mutable implementation of RemoteBoolean.

MutableRemoteFloat

A mutable implementation of RemoteFloat.

MutableRemoteInt

A mutable implementation of RemoteInt.

MutableRemoteLong

A mutable implementation of RemoteLong.

MutableRemoteString

An implementation of RemoteString that holds its value in a MutableState.


A readable and writable Remote Compose State value.

It represents a direct value (var) that can be modified, typically resulting in a variable being allocated in the remote document.

Parameters
<T : Any?>

The type of the value held by this state.

Summary

Inherited properties

From androidx.compose.remote.creation.compose.state.RemoteState
open T

The constant value held by this state.

T?

The constant value held by this state, or null if the state is dynamic.

open Boolean

Whether or not this remote state evaluates to a constant value.