defaultPlatformViewModelStoreOwner

Returns the nearest androidx.lifecycle.ViewModelStoreOwner that is provided via LocalViewModelStoreOwner. If it is not provided, then the androidx.lifecycle.ViewModelStoreOwner is searched in the hierarchy of Contexts. If no androidx.lifecycle.ViewModelStoreOwner is found, an IllegalStateException will be thrown.

Returns the default ViewModelStoreOwner for the current platform.

Remember a ViewModelStoreOwner in the current composition. It clears its ViewModelStoreOwner.viewModelStore when the current @Composable leaves the composition. Basically, its scope ties the lifecycle of the current composition.