https://kotlinlang.org logo
#compose
Title
# compose
s

Shakil Karim

02/14/2021, 1:39 PM
Is there any way to create a full width Item in LazyVerticalGrid? which configure as ?
Copy code
LazyVerticalGrid(
    modifier = Modifier.fillMaxSize(),
    cells = GridCells.Fixed(column),
    contentPadding = PaddingValues(top = Constants.Padding8dp)
) {
a

Andrey Kulikov

02/14/2021, 6:14 PM
will it work as you want it to work if you set Modifier.fillMaxWidth() on an item?