Skip to content

Instantly share code, notes, and snippets.

@linean
Created April 13, 2022 17:20
Show Gist options
  • Save linean/d0f817ff3aa23771d1b674322df53a74 to your computer and use it in GitHub Desktop.
Save linean/d0f817ff3aa23771d1b674322df53a74 to your computer and use it in GitHub Desktop.
class ExampleActivity : Activity() {
private val viewModel = ViewModel()
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
viewModel.state.handleEvent(ExampleEvent)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment