Scaffold
Scaffold. This should only be as the first child of the layout (see example). Used in any other place has no effected. Scaffold will render a header and a body widget where the header widget will "float". See https://api.flutter.dev/flutter/material/Scaffold-class.html.
| Name | Description |
|---|---|
| component | scaffold |
| appBar | widget for the header of the scaffold |
| body | body widget |
Example
{
"ux": {
"component": "scaffold",
"appBar": {
"component": "text",
"text": "title"
},
"body": {
...
}
}
}