Raed Ghazal
Flow operator functions should not be invoked within composition
MyComposable( flow = viewModel.flow.map { it + it } )
map
val x = remember { viewModel.flow.map { it + it } }
Zach Klippenstein (he/him) [MOD]
remember(viewModel) { … }
A modern programming language that makes developers happier.