Nat Strangerweather
LazyVerticalGrid
@Composable fun Board() { Box(modifier = Modifier.fillMaxSize(), contentAlignment = Alignment.BottomCenter) { LazyVerticalGrid( cells = GridCells.Fixed(7), contentPadding = PaddingValues(7.dp), ) { items(49) { index -> Piece(index) } } } }
theapache64
SizeTransform(clip = false)
A modern programming language that makes developers happier.