Skip to content

Instantly share code, notes, and snippets.

@V-Abhilash-1999
Created October 30, 2023 16:16
Show Gist options
  • Save V-Abhilash-1999/80458d47d8c2579ad7e21d8602874102 to your computer and use it in GitHub Desktop.
Save V-Abhilash-1999/80458d47d8c2579ad7e21d8602874102 to your computer and use it in GitHub Desktop.
Row and Column
Column(
modifier = Modifier
.fillMaxWidth()
) {
(1..6).forEach { _ ->
Row(
modifier = Modifier
.fillMaxWidth(),
horizontalArrangement = Arrangement.SpaceEvenly,
verticalAlignment = Alignment.CenterVertically
) {
(1..7).forEach { day ->
Day()
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment