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…
A Composable Journey: Jetpack Compose Animations | by Alejandro Zurcher | Jun, 2023
Let’s animate the content visibility The first thing we’ll do is add some visibility updates to our content, ensuring that it doesn’t just pop up in the UI without notice. Thankfully, achieving this in Compose is very straightforward. Let’s first extract the content that is…
Screen Transition Animations with Jetpack Navigation | by Alejandro Zurcher | Jul, 2023
The main goal is to be able to respond to the click of the movie poster, navigating to a detailed view of it. In this case, the detailed view simply consists of an expanded version of the poster. When diving deeper into the code, we…