Skip to content

Instantly share code, notes, and snippets.

@landarskiy
Last active December 16, 2022 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save landarskiy/75aa409b17eb6be973c221de47db57dc to your computer and use it in GitHub Desktop.
Save landarskiy/75aa409b17eb6be973c221de47db57dc to your computer and use it in GitHub Desktop.
GridPad(
cells = GridPadCells(2, 2)
) {
// valid content placement
item(row = 0, column = 0, rowSpan = 1, columnSpan = 1) {
// content
}
// invalid content placement
Text(text = "Text")
// valid content placement
item(row = 1, column = 1) {
// invalid content placement
item(row = 1, column = 1) {
// content
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment