Posts
Performance Optimization in Jetpack Compose
Performance Optimization in Jetpack Compose
· ☕ 5 min read · ✍️ Ignacio Carrión
Learn essential techniques and best practices for optimizing performance in Jetpack Compose applications, including composition optimization, recomposition control, and memory management

Custom Animations and Transitions in Jetpack Compose
Custom Animations and Transitions in Jetpack Compose
· ☕ 4 min read · ✍️ Ignacio Carrión
Deep dive into creating custom animations and transitions in Jetpack Compose, covering animation APIs, custom transitions, and performance optimization

State Management Patterns in Jetpack Compose
State Management Patterns in Jetpack Compose
· ☕ 11 min read · ✍️ Ignacio Carrión
Learn essential patterns for managing state in Jetpack Compose applications, including immutable state, event-based updates, and testing strategies

Understanding Hot and Cold Flows in Kotlin
Understanding Hot and Cold Flows in Kotlin
· ☕ 4 min read · ✍️ Ignacio Carrión
A comprehensive guide to understanding the differences between hot and cold flows in Kotlin, with practical examples

Achieving Compile-Time Safety in Koin: A Comprehensive Guide
Achieving Compile-Time Safety in Koin: A Comprehensive Guide
· ☕ 4 min read · ✍️ Ignacio Carrión
Dependency injection is a fundamental pattern in modern Android development, but how can we ensure our DI configuration is correct before running the app? In this post, we'll explore two powerful approaches to achieve compile-time safety with Koin: using the DSL's `verify()` function and leveraging Koin Annotations with KSP.