{
  "type": "scaffold",
  "args": {
    "appBar": {
      "type": "app_bar",
      "args": {
        "title": {
          "type": "text",
          "args": {
            "text": "Login"
          }
        }
      }
    },
    "body": {
      "type": "column",
      "args": {
        "children": [
          {
            "type": "text_form_field",
            "args": {
              "decoration": {
                "labelText": "Email"
              },
              "id": "email"
            }
          },
          {
            "type": "text_form_field",
            "args": {
              "decoration": {
                "labelText": "Password"
              },
              "obscureText": true,
              "id": "password"
            }
          },
          {
            "type": "elevated_button",
            "args": {
              "child": {
                "type": "text",
                "args": {
                  "text": "Login"
                }
              },
              "onPressed": {
                "type": "function",
                "args": {
                  "name": "loginUser"
                }
              }
            }
          }
        ]
      }
    }
  }
}