Skip to content

Instantly share code, notes, and snippets.

@psteiger
Created November 20, 2020 15:53
Show Gist options
  • Save psteiger/1095451ed9058a13c67e41112ac39a27 to your computer and use it in GitHub Desktop.
Save psteiger/1095451ed9058a13c67e41112ac39a27 to your computer and use it in GitHub Desktop.
@AndroidEntryPoint
class NearbyUsersActivity : AppCompatActivity() {
private val viewModel: NearbyUsersViewModel by viewModels()
override fun onCreate(savedInstanceState: Bundle?) {
lifecycleScope.launchWhenStarted {
viewModel.locations.collect {
// Update views with the data.
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment