yumoqing b949ed4968 fix: Text widgets use 'text' not 'label', Button widgets use 'label' not 'text'
Per bricks-framework spec:
- Text/Title: use 'text' for non-i18n, 'otext'+'i18n:true' for i18n
- Button: use 'label' for button text
2026-05-05 19:28:24 +08:00

30 lines
719 B
XML

{
"widgettype": "VBox",
"options": {
"width": "100%",
"height": "100%",
"padding": "20px",
"align": "center",
"justify": "center"
},
"subwidgets": [
{
"widgettype": "Text",
"options": {
"fontSize": "24px",
"fontWeight": "bold",
"color": "#1E40AF",
"marginBottom": "10px",
"text": "Payments Management"
}
},
{
"widgettype": "Text",
"options": {
"fontSize": "16px",
"color": "#6B7280",
"text": "Feature under development"
}
}
]
}