Layouts, theming, and animation

  1. Jetpack Compose transforms state into UI using the following three phase process.

  2. ___ executes your composable functions, which can emit UI and create a UI tree.

  3. Once all elements are measured in size during the Layout phase, the tree is walked again and all placement instructions are executed in the ___ step.

  4. A Constraints object tells the layout:

    Choose as many answers as you see fit.

  5. Which of the following is NOT true about the layout modifier:

  6. Rendering a scrollable set of items as they become visible on the screen, rather than all at once, is the main concept behind:

  7. True or False: Compose uses a single pass layout system.

  8. To adjust an animation’s fraction, which lets the animating value speed up and slow down, use ___.