Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mlykotom/cccc5ab2a1122a3c9cffdddb7aabac73 to your computer and use it in GitHub Desktop.

Select an option

Save mlykotom/cccc5ab2a1122a3c9cffdddb7aabac73 to your computer and use it in GitHub Desktop.
Connecting The Dots :: Assisted Saved State - Abstract Factory
/**
* Base interface for all ViewModel factories
*/
interface AssistedSavedStateViewModelFactory<T : ViewModel> {
fun create(savedStateHandle: SavedStateHandle): T
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment