Files
divkit/test_data/regression_test_data/grid-with-weights.json
T
edubinskaya e46db6f1f0 update regression for internal usages
new regression label

new regression cards
2022-09-06 15:46:07 +03:00

80 lines
1.7 KiB
JSON

{
"templates": {
"item": {
"type": "text",
"margins": {
"$left": "margin",
"$top": "margin",
"$right": "margin",
"$bottom": "margin"
},
"text_alignment_vertical": "center",
"text_alignment_horizontal": "center",
"font_size": 16,
"background": [
{
"type": "solid",
"$color": "background_color"
}
],
"border": {
"corner_radius": 8
}
}
},
"card": {
"log_id": "tests",
"states": [
{
"state_id": 1,
"div": {
"type": "grid",
"width": {
"type": "match_parent"
},
"height": {
"type": "wrap_content"
},
"background": [
{
"type": "solid",
"color": "#0e000000"
}
],
"column_count": 2,
"items": [
{
"type": "item",
"width": {
"type": "match_parent",
"weight": 2
},
"height": {
"type": "fixed",
"value": 120
},
"margin": 12,
"background_color": "#D098D3",
"text": "Item 1.\nweight = 2."
},
{
"type": "item",
"width": {
"type": "match_parent",
"weight": 1
},
"height": {
"type": "fixed",
"value": 120
},
"margin": 12,
"background_color": "#FFCC00",
"text": "Item 2.\nweight = 1."
}
]
}
}
]
}
}