Beatrice Kinyakinya.hashnode.dev·Mar 12, 2023Custom Compose LayoutsIn compose, you can implement custom layouts using layout modified or Layout composable. To learn more about custom compose layouts check out the official documentation. Compose has three main phases: composition, layout, and drawing phases. Composi...Discuss·7 likes·892 readsJetpack Compose
Tushar Pingaletusharpingale.hashnode.dev·Jun 25, 2022Building your own custom layout with jetpack composeIn jetpack compose there are different layouts such as Row, Column, and Box. When we need to align items in a horizontal fashion we use Row. For vertical alignment of items we use Columns and for stacking items one above the other we use the Box layo...Discuss·9 likes·1.8K readsJetpack Compose