Skip to content

Commit

Permalink
Change GridDemo size to height
Browse files Browse the repository at this point in the history
  • Loading branch information
fmccown committed Mar 6, 2024
1 parent 9768951 commit 12b30bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ fun VerticalGrid() {
) {
items(90) { item ->
Card(
modifier = Modifier.size(100.dp).padding(4.dp)
modifier = Modifier.height(100.dp).padding(4.dp)
) {
Text("Item $item", Modifier.padding(6.dp))
}
Expand Down

0 comments on commit 12b30bf

Please sign in to comment.