Nikola Despotoskinikolad.hashnode.dev·Sep 13, 2024Pass data in the Modifier tree and beyondOne of the reasons why the order of Modifiers is important could be summed by passing data from one modifier node to other nodes right of it. Why to the right? You can pass data from a node in the tree to the right along the modifier chain. Modifiers...Discuss·88 readsAndroid
Shreyas Patilblog.shreyaspatil.dev·Mar 20, 2024Capturing composable to a bitmap without losing a stateHey Composers 👋🏻, I'm the maintainer of a library - Capturable, that helps you to convert composable content into a Bitmap image easily. In the very first release of it, as there was no dedicated API from compose, I used to wrap composable content ...Discuss·24 likes·4.5K reads#AndroidDevAndroid
Oybek Kholiqovoybeksblog.hashnode.dev·Oct 6, 2023Buttons in Jetpack ComposeIn Jetpack Compose buttons, you need to give two arguments for buttons. The first argument as onClick callback and another one is your button text element. You can add a Text-Composable or any other Composable as child elements of the Button class ...DiscussJetpack Compose
Michelle and Jeremycodewithmitch.hashnode.dev·Sep 27, 2023A Guide to Layouts, Modifiers, and Material 3 UI Components in Jetpack ComposeJetpack Compose has redefined Android app development, offering a more intuitive and efficient way to create user interfaces. In this guide, we'll delve into the core concepts of Jetpack Compose: layouts, modifiers, and UI components. Assuming you al...Discuss·3 likes·100 readsAndroid Development using Jetpack ComposeBasic Layouts