grid property
Displays a grid with a collection of items.
A grid supports any number of columns and items. The number of rows is
determined by the upper bounds of the number items divided by the number
of columns. A grid with 10 items and 2 columns has 5 rows. A grid with 11
items and 2 columns has 6 rows. [Google Workspace Add-ons and Chat
apps](https://developers.google.com/workspace/extend): For example, the
following JSON creates a 2 column grid with a single item: "grid": { "title": "A fine collection of items", "columnCount": 2, "borderStyle": { "type": "STROKE", "cornerRadius": 4 }, "items": [ { "image": { "imageUri": "https://www.example.com/image.png", "cropStyle": { "type": "SQUARE" }, "borderStyle": { "type": "STROKE" } }, "title": "An item", "textAlignment": "CENTER" } ], "onClick": { "openLink": { "url": "https://www.example.com" } } }
Implementation
GoogleAppsCardV1Grid? grid;