Skip to content

Instantly share code, notes, and snippets.

@juliuscanute
Created July 10, 2019 00:29
Show Gist options
  • Save juliuscanute/fe4e86aa9636329d6ba1c334ebe4aaed to your computer and use it in GitHub Desktop.
Save juliuscanute/fe4e86aa9636329d6ba1c334ebe4aaed to your computer and use it in GitHub Desktop.
Word List Fragment
class WordListFragment : Fragment() {
//...
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
mainActivityViewModel.words.observe(this, Observer {
meaningAdapter.submitList(it)
})
//...
}
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment