Created
October 30, 2023 16:16
-
-
Save V-Abhilash-1999/80458d47d8c2579ad7e21d8602874102 to your computer and use it in GitHub Desktop.
Row and Column
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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