android / codelab-kotlin-coroutines

Kotlin Coroutines codelab
Apache License 2.0
552 stars 268 forks source link

An wrong type in Learn advanced coroutines with Kotlin Flow and LiveData #183

Open appsbuilder999 opened 1 year ago

appsbuilder999 commented 1 year ago

In step 14. Controlling concurrency with flow Open up PlantListViewModel.kt, and add this to the init block: init { clearGrowZoneNumber() growZone.mapLatest { growZone -> ... } "growZone.mapLatest" is wrong, the correct code is : growZoneFlow.mapLatest