Hi, is there a way to create a gridview in jetpack...
# compose
j
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
Maybe using LazyColumn and inside it nested Rows, like a matrix , then you can do GridView, you can try