flows
-
5 minute guide on understanding Hilt annotations

Hilt is a dependency injection library for Android that reduces the boilerplate of doing manual dependency injection in your project. It is built upon the well-established Dagger2 library. Hilt annotations are special words or phrases that are used to help the Hilt library work properly in an Android project. This guide shares some of the Continue reading
-
Kotlin Flows — Fundamentals

I’ve been looking more into Kotlin coroutines last week. The previous article focused on some of the fundamentals of coroutines such as CoroutineContext, CoroutineScope, Coroutine Builder etc. As promised, this is a follow up to that on Flows. What are Flows? A stream of data that can be computed asynchronously is referred to as a Flow . Continue reading
