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
inline fun CreationExtras.edit(builderAction: MutableCreationExtrasBuilder.() -> Unit): CreationExtras
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.