Skip to content

Instantly share code, notes, and snippets.

@seoft
Last active November 13, 2021 10:08
Show Gist options
  • Save seoft/0737cd75e91fa958624202d0905baedb to your computer and use it in GitHub Desktop.
Save seoft/0737cd75e91fa958624202d0905baedb to your computer and use it in GitHub Desktop.
private val adapter by lazy { NormalAdapter(onNormalListener) }
override fun onCreate(savedInstanceState: Bundle?) {
binding.recyclerView.adapter = adapter
viewModel.uiModels.observe(this) {
adapter.submitList(it)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment