Created
November 20, 2020 15:53
-
-
Save psteiger/1095451ed9058a13c67e41112ac39a27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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