CreationExtras

expect abstract class CreationExtras

Simple map-like object that passed in ViewModelFactory.create to provide an additional information to a factory.

It allows making Factory implementations stateless, which makes an injection of factories easier because don't require all information be available at construction time.

Inheritors

Functions

Link copied to clipboard

Edits this CreationExtras by populating a MutableCreationExtrasBuilder using the given builderAction. Content of this CreationExtras will be copied into the resulting MutableCreationExtrasBuilder first. Then the builderAction will be applied to the MutableCreationExtrasBuilder.

Link copied to clipboard
expect abstract operator fun <T> get(key: Key<T>): T?

Returns an element associated with the given key

actual abstract operator fun <T> get(key: Key<T>): T?