🌈 Create new beautiful Compose Gradients with our new wesite ->
Composable Function

rememberMutableRemoteFloat

Factory composable for mutable remote float state.

rememberMutableRemoteFloat

Source set: Android
@Composable
public fun rememberMutableRemoteFloat(initialValue: Float): MutableRemoteFloat

Factory composable for mutable remote float state.

Parameters

initialValue The initial Float value.

Return

A MutableRemoteFloat instance that will be remembered across recompositions.

rememberMutableRemoteFloat

Source set: Android
@Composable
public fun rememberMutableRemoteFloat(
    value: RemoteFloatContext.() -> RemoteFloat
): MutableRemoteFloat

Remembers a remote float expression based on RemoteFloatContext.

Parameters

value A lambda that provides the RemoteFloat expression.

Return

A RemoteFloat instance representing the provided expression.

Content updated: