Package-level declarations

Types

Link copied to clipboard

An implementation of AppCompatActivity which creates a ViewModel and renders it using ViewModelComposable. Also provides a reference to this AppCompatActivity using LocalAppCompatActivity.

Properties

Link copied to clipboard

Functions

Link copied to clipboard

Composable which manages viewModel lifecycle and binds to all its ActivityLifecycleSubscribable using fragmentManager. This automatically modifies the content using ComposableLifecycleSubscribable.modifier.

Link copied to clipboard

Stores a view model in the local ViewModelStore. Use if the view model was created manually and is not located in Activity/Fragment ViewModelStore.

Link copied to clipboard

Stores and remembers a view model in the local ViewModelStore. Use if the view model was created manually and is not located in Activity/Fragment ViewModelStore. provider will only be evaluated during the composition. Recomposition will always return the value produced by provider.

Link copied to clipboard

Composable which manages viewModel lifecycle and binds to all its BaseLifecycleViewModel.activeLifecycleSubscribables. This automatically modifies the content using ComposableLifecycleSubscribable.modifier.