Text Fields
Text fields let users enter text into a UI.

Usage
python
from material_ui.text_fields import FilledTextField
FilledTextField(label="Name")API
Properties
| Name | Type | Default | Description |
|---|---|---|---|
label | str | "" | Floating label text. |
value | str | "" | Current value of the text field. |
trailing_icon | Icon | None | None | Icon to show in the trailing space. |
Signals
| Name | Arguments | Description |
|---|---|---|
on_change | value: str | Emitted when the value changed. |