Is there any way to create a full width Item in La...
# compose
s
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
will it work as you want it to work if you set Modifier.fillMaxWidth() on an item?