Ink
LazyVerticalGrid
cb
Tin Tran
LazyVerticalGrid( cells = GridCells.Fixed(2), modifier = Modifier .background(Color(0xFFFAD6A5)) .padding(50.dp) .wrapContentHeight() .fillMaxWidth(), contentPadding = PaddingValues( start = 12.dp, top = 16.dp, end = 12.dp, bottom = 16.dp ), content = { items(productCategoryList){ it -> Box(Modifier.padding(20.dp)) { ProductCategoryItemView(it) } } } )
Box()
A modern programming language that makes developers happier.