Skip to content

//deferred-resources-compose-adapter/com.backbase.deferredresources.compose/rememberResolvedString

rememberResolvedString

[androidJvm]
Content
@Composable()

fun rememberResolvedString(deferredFormattedPlurals: DeferredFormattedPlurals, quantity: Int): String
More info

Resolve deferredFormattedPlurals with the given quantity and using quantity as the only format arg, remembering the resulting value as long as the current LocalContext doesn't change.

[androidJvm]
Content
@Composable()

fun rememberResolvedString(deferredFormattedPlurals: DeferredFormattedPlurals, quantity: Int, vararg formatArgs: Any): String
More info

Resolve deferredFormattedPlurals with the given quantity and formatArgs, remembering the resulting value as long as the current LocalContext doesn't change.

[androidJvm]
Content
@Composable()

fun rememberResolvedString(deferredFormattedString: DeferredFormattedString, vararg formatArgs: Any): String
More info

Resolve deferredFormattedString with the given formatArgs, remembering the resulting value as long as the current LocalContext doesn't change.

[androidJvm]
Content
@Composable()

fun rememberResolvedString(deferredText: DeferredText): String
More info

Resolve deferredText to a plain string, remembering the resulting value as long as the current LocalContext doesn't change.