In a few recent projects, I’ve needed to utilise Google Maps within environments utilising Jetpack Compose. In the early days of Compose this felt light a sought-after piece of functionality – even though it is still being built on, it now seems to be in a place where I can confidently use it. In this […]
Modifiers in Jetpack Compose are a powerful tool for customising and enhancing UI components. They allow developers to modify the appearance, behaviour, and layout of composable functions without changing their core implementation. Chainable: Modifiers can be chained together, allowing for multiple modifications to be applied sequentially. Reusable: Custom modifiers can be created and reused across […]
This is Part 7 of the android interview question series. This part will focus on Jetpack Compose. 1. What is Jetpack Compose? Jetpack Compose is Android’s recommended modern toolkit for building native UI. It simplifies and accelerates UI development on Android. Jetpack Compose is declarative programming, which means you can describe your user interface by […]
Graphics layers | Jetpack Compose Tips Source link
We aim to create an interface with a lazy list where scrolling causes the top card to transform into a toolbar, with a smooth, curved path transition effect. What You’ll Learn Creating custom layouts Resizing layouts based on states (collapsed or expanded) Combining lazy list scrolling with screen content Working with nested scrolling and NestedScrollConnection […]
I’ve continued my journey with Compose and Canvas! After exploring drawing and animating shapes, I wanted to learn more about text. Bi-visibility Day was coming, so I drew a small animation to publish on Instagram. The final animation looks like this: In this blog post, we will look at how to add text to Canvas […]
AnchoredDraggable #shorts Source link
I have below docker-compose.yaml name: mydemo volumes: operator-volume: driver: local services: dockeroperator: build: dockerfile: .docker/Dockerfile volumes: – operator-volume:/terraform/dev – ./.kube:/root/.kube – ./utils:/operator/examples attach: false env_file: “.env” when i am running docker-compose build , i am getting below error: services.dockeroperator Additional property attach is not allowed I have below docker version Docker version 20.10.17, build 100c701 […]
The Team Leaders feature for the NHL app on Google Play To create exceptional Jetpack Compose features, start by aligning them with your product goals and user needs. Design, prototype, and develop features that provide value. For this specific feature, Product aims to deliver interactive widgets and comprehensive player data, enhancing the user experience. 🏆🎉🥇💪 […]
In a few recent projects, I’ve needed to utilise Google Maps within environments utilising Jetpack Compose. In the early days of Compose this felt light a sought-after piece of functionality – even though it is still being built on, it now seems to be in a place where I can confidently use it. In this […]