Tag: layout

  • Getting started with jetpack compose – Layouts

    Getting started with jetpack compose – Layouts

    The Jetpack Compose implementation of the layout system has two main goals: being high-performant, and making it easy to write custom layouts. High performance is achieved in Compose by prohibiting measuring layout children more than once. A Composable function might emit several UI elements. However, if you don’t provide guidance on how they should be […]