Column {
repeat(7) {
Row {
repeat(5) {
Box(
modifier = Modifier
.padding(1.dp)
.width(10.dp)
.height(10.dp)
.background(color = Color.Gray)
)
}
}
}
}