Skip to content

Instantly share code, notes, and snippets.

@gfreivasc
Created April 7, 2019 18:41
Show Gist options
  • Save gfreivasc/f3df8f3bfb8b77debafb046c9581497b to your computer and use it in GitHub Desktop.
Save gfreivasc/f3df8f3bfb8b77debafb046c9581497b to your computer and use it in GitHub Desktop.
class MainActivity : ComponentActivity(R.layout.activity_main) {
private lateinit var viewModel: MainViewModel
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
viewModel = provideViewModel(MainViewModel::class.java)
textView.text = "${viewModel.count}"
button.setOnClickListener {
viewModel.inc()
textView.text = "${viewModel.count}"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment