Skip to content

Instantly share code, notes, and snippets.

@CDRussell
Created February 10, 2020 23:02
Show Gist options
  • Save CDRussell/abf378448d79663ed5771315c14ec5c1 to your computer and use it in GitHub Desktop.
Save CDRussell/abf378448d79663ed5771315c14ec5c1 to your computer and use it in GitHub Desktop.
New setup of Activity and ViewModel
class TabSwitcherActivity : Activity(), CoroutineScope by MainScope() {
override fun onNewTabRequested() {
viewModel.onNewTabRequested()
}
}
fun onNewTabRequested() {
tabRepository.add() // this is a `suspend` function
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment