Tower Guidev2
Chris Fillmore
snapshotFlow
LaunchedEffect
fun displayItem(context: Context) = viewmodelScope.launch { snapshotFlow { displayItemState } .filter { it.viewIntent != null } .collectLatest { displayItemState -> context.startActivity(displayItemState.viewIntent) } }
Zun
A modern programming language that makes developers happier.