Implementing CI/CD Using GitHub Actions: A Quick Guide to Build a CI/CD Pipeline
A few days back, I wrote an article – CI/CD using GitLab . In that article, I talked about implementing CI/CD using GitLab, which is used to automate build, test, deploy, and monitor your applications. Since then, I’ve moved onto another organization, my favorite, GitHub….
Seamless Play of D&D — Implementing Drag and Drop Across Multiple Screens in Your Android App with Jetpack Compose | by Nirbhay Pherwani | Aug, 2023
The LongPressDraggable composable function is the foundation of our seamless D&D experience. It allows us to wrap any content (ex. horizontal pager) with dragging behavior, making it draggable upon a long-press gesture. Code @Composablefun LongPressDraggable(modifier: Modifier = Modifier,content: @Composable BoxScope.() -> Unit) {val state =…
Implementing a Crypto Trade App in Jetpack Compose: Adding the Custom Crypto Cap Card | by Alejandro Zurcher | Jul, 2023
Let’s begin by creating a new Composable under our composables/home package to keep things organized in our project. Now, let’s write the root function of our new Composable. This new view looks quite similar to a native Card, so for now, let’s start with that…