android / compose-samples

Official Jetpack Compose samples.
https://developer.android.com/jetpack/compose
Apache License 2.0
20.22k stars 4.81k forks source link

Moved withContext() call up to surround all IO being performed. #1463

Closed javadude closed 1 month ago

javadude commented 1 month ago

Fixes part of #1461

JetCaster showed a blank screen when run. The podcast fetching was running on the main dispatcher. Moved the withContext() up to ensure all IO was being performed on the IO dispatcher.