TextInputPropsinterface
{
rows?: number | undefined;
multiline?: boolean;
input?: StringInputType;
min?: number | undefined;
max?: number | undefined;
formatter?: TextFormatter | undefined;
}| Property | Type | |
|---|---|---|
.rows | number | |
.multiline | boolean | |
.input | StringInputType | type="" prop for HTML <input /> tags that are relevant for strings. |
.min | number | |
.max | number | |
.formatter | TextFormatter | Optional formatter — when provided the value is reformatted on blur and when initially displayed. |
Props for TextInput, a single- or multi-line text input bound to a string value.