Advanced State Management in Compose: Effects and Flows📅 Apr 1, 2025 · ☕ 5 min read · ✍️ Ignacio CarriónDeep dive into advanced state management in Jetpack Compose, including Effects, Flow integration, and lifecycle-aware state collection
Flow Composition Patterns: Combining Multiple Flows Effectively📅 Mar 18, 2025 · ☕ 7 min read · ✍️ Ignacio CarriónLearn how to effectively combine multiple Kotlin Flows using various composition patterns and best practices for building complex flow pipelines
Understanding Flow Operators: Buffer, Conflate, Debounce, and Sample📅 Mar 14, 2025 · ☕ 4 min read · ✍️ Ignacio CarriónDeep dive into Kotlin Flow operators: buffer, conflate, debounce, and sample. Learn when and how to use each operator with practical examples.
Converting Callbacks to Coroutines and Flows in Kotlin📅 Mar 11, 2025 · ☕ 5 min read · ✍️ Ignacio CarriónLearn how to transform callback-based APIs into modern Kotlin coroutines and flows using suspendCoroutine and callbackFlow
Understanding Hot and Cold Flows in Kotlin📅 Mar 7, 2025 · ☕ 4 min read · ✍️ Ignacio CarriónA comprehensive guide to understanding the differences between hot and cold flows in Kotlin, with practical examples