Skip to content

Instantly share code, notes, and snippets.

@iambaljeet
Last active April 15, 2020 07:21
Show Gist options
  • Save iambaljeet/8bff48d76b7c2b8e069fa062cf059926 to your computer and use it in GitHub Desktop.
Save iambaljeet/8bff48d76b7c2b8e069fa062cf059926 to your computer and use it in GitHub Desktop.
class MainActivity : AppCompatActivity() {
private val mainViewModel: MainViewModel by viewModel()
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
text_view_demo.text = mainViewModel.getUserName()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment