Introduction

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

In the previous lesson, you learned about lists in Compose and how you can create highly customized lists with ease that are performant. You also saw how the simplicity of Jetpack Compose starkly contrasts with the verbosity and complexity of the RecyclerView APIs in the UI toolkit.

In this lesson, you’ll go a step further with lists and learn how you can create rich user experiences with grids.

In the context of RecyclerViews, you usually think about grids in terms of a variation of LayoutManager, like the GridLayoutManager, which determines how you place your elements on the screen. But in Jetpack Compose, you can think of grids conceptually as extensions of the list construct and far simpler compared with their RecyclerView counterpart.

In this lesson, you’ll:

  • Identify the purpose of a Grid.
  • Explain how to create a Grid.
  • Detail the purpose of a Lazy Grid.
See forum comments
Download course materials from Github
Previous: Quiz: Leverage Lists Next: Instruction