🎞️
Android - Architecture: The UI layer - MAD Skills に日本語字幕を付ける
前回
動画
スクリーンショット
補足資料
- mutableStateOfやsnapshotFlowのドキュメント
-
terminal operatorについてのドキュメント
Terminal operators on the flow are either suspending functions such as collect, single, reduce, toList, etc. or launchIn operator that starts collection of the flow in the given scope. They are applied to the upstream flow and trigger execution of all operations. Execution of the flow is also called collecting the flow and is always performed in a suspending manner without actual blocking. Terminal operators complete normally or exceptionally depending on successful or failed execution of all the flow operations in the upstream. The most basic terminal operator is collect
続き
Discussion