🎞️

Android - Architecture: The UI layer - MAD Skills に日本語字幕を付ける

2022/03/24に公開

前回

https://zenn.dev/todayama_r/articles/2f4769319e4532

動画

https://www.youtube.com/watch?v=Wp5yf1adeUI

スクリーンショット
















































































































補足資料

  • 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

続き

https://zenn.dev/todayama_r/articles/f22a73245b758a

Discussion