Skip to content

Instantly share code, notes, and snippets.

@psteiger
Created November 20, 2020 16:17
Show Gist options
  • Save psteiger/bff6d814f77b59e7977301ad8fa7ac28 to your computer and use it in GitHub Desktop.
Save psteiger/bff6d814f77b59e7977301ad8fa7ac28 to your computer and use it in GitHub Desktop.
@AndroidEntryPoint
class NearbyUsersActivity : AppCompatActivity() {
private val viewModel: NearbyUsersViewModel by viewModels()
override fun onCreate(savedInstanceState: Bundle?) {
viewModel
.locations
.onEach { /* new locations received */ }
.observeIn(this)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment