0%
Step 1 of 5What Changed
Before (old JSON format):
json
{
"ui": [
{
"class": "Frame",
"globalid": "root",
"alias": "root",
"size": "{1,0},{1,0}",
"children": [
{ "class": "TextLabel", "globalid": "title", "text": "Hello" }
]
}
],
"metadata": { "description": "My page" }
}After (new DSL format):
python
page "page":
description = "My page"
frame root [globalid: "root"]:
size = "{1,0},{1,0}"
textlabel title:
text = "Hello"