Skip to content

Instantly share code, notes, and snippets.

@k0siara
Created August 8, 2021 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save k0siara/1f69809c68c09d60f9a2855c5bf5b339 to your computer and use it in GitHub Desktop.
Save k0siara/1f69809c68c09d60f9a2855c5bf5b339 to your computer and use it in GitHub Desktop.
FirstScreenViewModel.kt
class FirstScreenViewModel(
private val navigator: Navigator
) : ViewModel {
...
fun navigateExample() {
navigator.navigate(NavigationActions.FirstScreen.firstScreenToSecondScreen())
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment