PlatformTextInputSessionScope



A PlatformTextInputSession that is also a CoroutineScope. This type should only be used as the receiver of the function passed to establishTextInputSession. Other extension functions that need to get the scope should not use this as their receiver type, instead they should be suspend functions with a PlatformTextInputSession receiver. If they need a CoroutineScope they should call the kotlinx.coroutines.coroutineScope function.

Summary

Inherited functions

From androidx.compose.ui.platform.PlatformTextInputSession
suspend Nothing

Starts the text input session and suspends until it is closed.

Cmn