TextInput
Type
(props: Props) => result: RenderFunc
Props: object
| Name | Description | Required | Type | Default |
|---|---|---|---|---|
| label | text label | NO | string | - |
| disabled | whether to disable the input box | NO | boolean | - |
| multiline | whether multi-line | NO | boolean | - |
| placeholder | placeholder text for the input box | NO | string | - |
| rows | number of rows | NO | number | - |
| bold | bold | NO | boolean | - |
| value | the value of the text box | NO | string | - |
| rows | number of rows | NO | string | - |
| onChange | input event | NO | (value: string) => void | - |
| settingsKey | The key to store the value in the Settings Storage API | NO | string | - |
| labelStyle | The style of the text, supporting CSS properties | NO | object | - |
| subStyle | Style object for the bottom text, supports CSS properties | NO | object | - |