Mouad Oumousoumousmouad.hashnode.dev·Feb 4, 2025Understanding @Composable and @Preview Annotations in Jetpack ComposeIntroduction Jetpack Compose is a modern UI toolkit for Android that simplifies UI development with a declarative approach. At the core of Compose are @Composable and @Preview annotations, which allow you to build and preview UI components efficientl...Compose UI Components Tutorialandroid app development
Lin Min Phyoblog.lin.phyo.work·Feb 4, 2025textAllCaps in ComposeHello fellow Android nerd. Are you looking for an alternative of textAllCaps of XML in Jetpack Compose, you are at the right place. TextField( value = "", onValueChange = {}, keyboardOptions = Key...Jetpack Compose TricksJetpack Compose
Mouad Oumousoumousmouad.hashnode.dev·Feb 2, 2025Top Reasons to Switch to Jetpack Compose NowWhat is Jetpack Compose? Jetpack Compose is a modern UI toolkit for building native Android apps using Kotlin. It replaces XML-based UI design with a fully declarative approach, making UI creation more flexible and intuitive. Why Use Jetpack Compose?...Compose UI Components TutorialAndroid
Sagnik Mukherjeesagnikmukherjee.hashnode.dev·Jan 28, 2025Jetpack Compose Basics: Exploring Row, Column, and BoxIn Jetpack Compose, there are three basic Composables: Row, Column, and Box. With these, we can create any layout format we want. Row : A Row arranges its children horizontally Think of it as placing items side by side import androidx.compose...Android
Daniel Alomeblog.astrocoder.me·Jan 13, 2025A Comprehensive Guide to Modularization for Large-Scale Android ProjectsIn the ever-evolving world of Android development, developers often focus on the latest trends like Jetpack Compose, Kotlin Coroutines, and dependency injection with Hilt. However, there’s one critical yet under-discussed topic in Android development...10 likes·65 readsAndroid
Abdul Mueezabdulmueez.hashnode.dev·Jan 5, 2025My Journey with Jetpack Compose: From XML Struggles to Compose Magic ✨Hey there, fellow Android devs! 👋 Let me tell you a story about how I fell in love with Jetpack Compose (and why you might too!). The XML Days: A Tale of Struggle 😅 Remember those days? You know what I'm talking about: Writing endless XML layouts ...Jetpack Compose
praveen sharmasharmapraveen91.hashnode.dev·Dec 26, 2024Mastering Jetpack Compose: Essential UI Elements and Best Practices for Android DevelopersJetpack Compose is a modern, fully declarative UI framework for building Android applications. It simplifies UI development with its rich set of composable functions, there are nuances and best practices that developers might not be aware of. In this...compose_ui
Sergio Sastre Florezsergiosastre.hashnode.dev·Dec 17, 2024Back to the Future: Compose Previewing Your XML-Based Views!Jetpack Compose has transformed Android UI development with its declarative approach, making UI code simpler to write. One of its standout features is Compose Previews, which allows developers to instantly view how Composable functions will look on a...2 likes·1.1K readsandroid app development
Shaikh Siddikenterprise-application-architecture.hashnode.dev·Dec 8, 2024Enterprise Level Application ArchitectureIn Android development, Data, Domain, and Presentation layers are often used to organize code and follow clean architecture principles. This approach enhances maintainability, scalability, and testability of your codebase. Below is a detailed explana...1 like·62 readsJetpack Compose
Canopascanopas.hashnode.dev·Dec 3, 2024How To Create Easy Pagination In Jetpack ComposeIntroduction When building apps with long lists of data, the Jetpack Paging Library is often the go-to solution. However, it can be overkill for scenarios where you need basic pagination or when working with APIs and databases that provide simple off...Android