Shreyas Patilblog.shreyaspatil.dev·Nov 11, 2024Skipping the invocation of intermediate composablesHey Composers 👋🏻, Jetpack Compose is now standard in Android app development, making performance optimization with Jetpack Compose an important topic. This is a short blog about recomposition optimization, where I'll walk you through the concept of...Discuss·3 likes·2.8K reads#AndroidDevcompose-compiler
Urvish Suhagiyaurvishsuhagiya.hashnode.dev·Oct 27, 2024Docker Compose & YamlDocker Compose Docker Compose is a tool that allows you to define and manage multi-container Docker applications using a simple YAML file called docker-compose.yml. With Docker Compose, you can: Define Services: Specify the various services that mak...Discuss·2 likesDocker
Romman Sabbirrommansabbir.com·Oct 4, 2024Monitor Internet Connectivity in Jetpack Compose! 📶 ✨Hello, and welcome to this article where we will delve into a Jetpack Compose function that is not only lifecycle-aware but also adept at checking internet connectivity using the most up-to-date APIs available. This function is designed to utilize th...Discuss·73 readsAndroid Application Developmentandroid app development
Rajendra Patilrajendrapatil9949.hashnode.dev·Aug 17, 2024#90DaysOfDevops | Day 18Docker ComposeDocker Compose is a tool that allows you to define and manage multi-container Docker applications. It uses a YAML file to define the services, networks, and volumes required for the application, making it easy to spin up and manage comp...Discuss#90daysofdevops
Romman Sabbirrommansabbir.com·Aug 13, 2024Why not JetPack Compose with DiffUtil?DiffUtil is a tool in Android's RecyclerView library that helps update lists efficiently. It compares an old list with a new list to find the differences. Instead of replacing the whole list and redrawing everything, DiffUtil figures out the smallest...Discuss·10 likes·279 readsAndroid Application DevelopmentAndroid
Sebastian Sellmairblog.sellmair.io·Jul 22, 2024Setting up Kotlin Multiplatform (+Compose)Kotlin Multiplatform (De)Wizard Project Wizards can be great; they spare us from doing repetitive, boring, boilerplate tasks over and over again. However: Wizards are no replacement for education or documentation: I have seen so many engineers gettin...Discuss·4 likes·2.3K readsKotlin
Subhadip Daslearndroid.hashnode.dev·Jun 1, 2024Leverage the essentials: Jetpack Compose best practicesRecently, I started a new project where I decided to use Jetpack Compose for the UI layer. Alongside this, I aimed to explore best practices for using Compose effectively, with a particular focus on performance optimizations techniques and options. W...Discuss·95 readscompose
Joe Roskopfblog.joetr.com·May 22, 2024Compose Guard: Detecting Regressions In Jetpack ComposeAs Jetpack Compose becomes more widely used across Android (and Multiplatform projects!), detecting regressions via tooling becomes more important to shift left and detect regressions earlier in the development cycle instead of relying on manually ca...Discuss·394 readsJetpack Compose
Shreyas Patilblog.shreyaspatil.dev·May 20, 2024Effortless Compose Compiler report analysisHey Androiders 👋🏻, If you're building an app with Jetpack Compose, you might know that to make your app perform well with as few recompositions as possible, you should use stable parameters in the composable function, and so on. To do this, the Com...TIRANGA HACK and 1 other are discussing this2 people are discussing thisDiscuss·26 likes·1.8K reads#AndroidDevAndroid
Vignesh Prabhuwww.vigneshprabhu.dev·May 6, 2024Handle Android Lifecycle methods inside composable functionAndroid Lifecycle LifeCycle is a class from androidx.lifecycle package which helps us to get the information and observe on the lifecycle state of components like Activities and fragments Two things to consider 1.State : Created,Started,Resumed,Destr...Discuss·188 readsandriod