Files
burstein cdff3515b9 Supported grid with empty cells in a row
commit_hash:86f773f949ccff596040f671e88384fbfdc9511e
2024-12-30 20:28:21 +03:00

81 lines
1.4 KiB
JSON

{
"description": "non-rectangular grid",
"platforms": [
"android",
"ios",
"web"
],
"templates": {
"grid_item": {
"type": "separator",
"width": {
"type": "fixed",
"value": 80
},
"height": {
"type": "fixed",
"value": 80
},
"margins": {
"left": 4,
"top": 4,
"right": 4,
"bottom": 4
},
"background": [
{
"type": "solid",
"color": "#1ABC9C"
}
],
"border": {
"corner_radius": 8
},
"delimiter_style": {
"color": "#00000000"
}
}
},
"card": {
"log_id": "empty_grid",
"states": [
{
"state_id": 0,
"div": {
"type": "grid",
"column_count": 2,
"width": {
"type": "wrap_content"
},
"height": {
"type": "wrap_content"
},
"paddings": {
"top": 4,
"bottom": 4,
"left": 4,
"right": 4
},
"background": [
{
"type": "solid",
"color": "#ECF0F1"
}
],
"items": [
{
"type": "grid_item"
},
{
"type": "grid_item"
},
{
"type": "grid_item"
}
]
}
}
]
}
}