30 lines
534 B
Markdown
30 lines
534 B
Markdown
**STRUCT**
|
|
|
|
# `Form`
|
|
|
|
A list with no dynamic content styled as a boxed list.
|
|
|
|
## Properties
|
|
### `content`
|
|
|
|
The content.
|
|
|
|
## Methods
|
|
### `init(content:)`
|
|
|
|
Initialize a `Form`.
|
|
- Parameter content: The view content, usually different kind of rows.
|
|
|
|
### `update(_:modifiers:)`
|
|
|
|
Update a view storage.
|
|
- Parameters:
|
|
- storage: The view storage.
|
|
- modifiers: Modify views before being updated.
|
|
|
|
### `container(modifiers:)`
|
|
|
|
Get a view storage.
|
|
- Parameter modifiers: Modify views before being updated.
|
|
- Returns: The view storage.
|