Compose a Compose Button by composing Composable functions | by André Oriani | Sep, 2023
Let’s create a Compose Button from scratch and apply Separation of Concerns. Design Language Systems are becoming an increasing trend among Mobile designers. Your lovely designer follows such a trend and provides you with the below specifications for buttons. They are not really Material buttons….
Seeing your composable in shades of grey | by Katie Barnett | Aug, 2023
Creating a greyscale modifier in Jetpack Compose and how to make complex composables look disabled. Photo by Rodion Kutsaiev on Unsplash Recently, I needed to make a composable look disabled, my friendly design team wanted something quite complex turned to greyscale and made slightly transparent….
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…