Since the `LazyVerticalGrid` is experimental. Is t...
# compose
d
Since the
LazyVerticalGrid
is experimental. Is there any workaround to create grid list using
LazyColumn
?
a
LazyVerticalGrid
uses
LazyColumn
under the hood. You can just check the source of
LazyVerticalGrid
.
👌 1
d
ok thanks
I have used it in this screen, if you take a look you will find the usage
d
Thanks a lot @Vivek Sharma but I already took code snippet from this gist and it worked like a charm https://gist.github.com/nglauber/64df9091c2e76bde648ce48d585ed3e1
Your gist will work but it can cause performance issues for a large dataset as it's just using Column and Row as quoted here https://developer.android.com/jetpack/compose/lists#lazy
v
I was using this
Custom Grid
and adding it inside
items{}
, inside
LazyColumn
yeah, it can get performance issues, but you should check out if you are getting any issues