© 2023 Hashnode
#jetpack-compose
In this article, I will guide you on a step-by-step process on how to implement in-app purchases in your android project using jetpack compose. Step 1: Adding Dependencies After creating an empty compose project, add this dependency in your…
Hey Composers 👋🏻, The heart💚 of Jetpack Compose is a State that tells compose when to recompose UI. In the state management with compose, we can specify policies by which we can tell compose when e…
Room database is a part of Android Architecture components and provides an abstract layer over SQLite. Room makes it easy to work with databases and provides a convenient way to pre-populate the database with static data. Here’s how to pre-…
Introduction Hello! 👋 In this small tutorial I will show you how to implement a simple list filter search using the latest Android Jetpack. 🚀 Well then let's get started! 😎 Creating the Project First we need to actually create the proje…
Welcome back to this series of articles on Android Development with Kotlin and Jetpack Compose. In the previous article, we discussed the type system in Kotlin along with null safety. In this article,…
If your app doesn't implement any splash screen, it is implemented by default in Android 12 (API level 31). In other words, there is a splash screen for Android 12 or later but not for Android 11 and …
Hello everyone 👋🏻, I’d like to share with you how to build Android apps with the latest trends for the year 2023. Disclaimer This is an article from my opinion and professional experience, taking in…
As an Android developer, you may be wondering why you should consider using Kotlin for your next project. Kotlin is a modern programming language that was first introduced by JetBrains in 2011, and it…
A side effect in Compose is a change to the state of the app that happens outside the scope of a composable function. To handle these side effects, you can use effect handlers. There are 2 types of ef…
I think in 2023, Google is going to go all-in on Jetpack Compose, the way it did with Kotlin. And the industry is going to see a major shift from XML-based UI to Compose. So, I'm starting a #100DaysOf…