How to reflect a flow value when it gets ready aft...
# flow
a
How to reflect a flow value when it gets ready after collecting?
Copy code
var property: String? = null
.......

propertyFlow.collect{
    property = it
}

.......

textView.text = property // reflect this value when its get ready
Something like that, any idea?