https://kotlinlang.org logo
j

Jrichards1408

11/17/2020, 5:46 PM
Hi, is there a way to create a gridview in jetpack compose? i know that
LazyColumnFor
just creates a normal listview of items where each item takes up a whole row, what i want is to create basically a gridview that can be scrolled vertically
v

Vivek Sharma

11/17/2020, 6:08 PM
Maybe using LazyColumn and inside it nested Rows, like a matrix , then you can do GridView, you can try
4 Views