Files
divkit/test_data/regression_test_data/layout_provider_recursive.json
T
4eb0da 036073e33e layout_provider
commit_hash:64b4f1d73ca04215f4bc742fcf35594b06948f20
2024-09-17 16:43:42 +03:00

70 lines
1.5 KiB
JSON

{
"templates": {
"block": {
"type": "container",
"items": [
{
"type": "text",
"$text": "text",
"font_size": 16,
"width": {
"type": "wrap_content"
},
"margins": {
"left": 10,
"right": 10,
"top": 10,
"bottom": 10
}
}
],
"background": [
{
"type": "solid",
"color": "#A0FFA0"
}
],
"margins": {
"left": 10,
"top": 10
}
}
},
"card": {
"log_id": "test",
"variables": [
{
"name": "block1_width",
"type": "integer",
"value": 0
}
],
"states": [
{
"state_id": 0,
"div": {
"type": "container",
"orientation": "horizontal",
"items": [
{
"type": "block",
"text": "width = match_parent",
"layout_provider": {
"width_variable_name": "block1_width"
}
},
{
"type": "block",
"text": "width = block1.width x 0.75",
"width": {
"type": "fixed",
"value": "@{block1_width * 3 / 4}"
}
}
]
}
}
]
}
}