Billy Newman
10/26/2023, 3:31 PMval flow = combine(first.asFlow(), second.asFlow()){ first, second ->
first to second
}
...
fun updateFirst(update: String) {
first.value = update // combine transform is not called
}
I am observing the flow object in my compose screenMikhail
10/26/2023, 3:55 PMfirst
and why do you think it should emit data to flow?Billy Newman
10/26/2023, 4:02 PMval first = MutableLiveData<String>()
Sorry first is a livedata object that is changingMitchell Syer
10/26/2023, 6:39 PMBilly Newman
10/26/2023, 6:54 PM