Tag: constraintlayout

  • Getting started with jetpack compose – ConstraintLayout

    Getting started with jetpack compose – ConstraintLayout

    ConstraintLayout can help place composable relative to others on the screen and is an alternative to using multiple nested Row, Column, Box, and custom layout elements. ConstraintLayout is useful when implementing larger layouts with more complicated alignment requirements. – Android Developers If you’re new to Compose, I highly recommend going through the following articles: Getting […]

  • Make Your Layout Responsive With ConstraintLayout In Android

    Make Your Layout Responsive With ConstraintLayout In Android

    ConstraintLayout allows you to create large and complex layouts with a flat view hierarchy (no nested view groups). It’s similar to RelativeLayout in that all views are layered out according to relationships between sibling views and the parent layout, but it’s more flexible than RelativeLayout and easier to use with Android Studio’s Layout Editor. The ConstraintLayout […]