The "MultiLineInput" component is a multi-line text area to write your texts.
MultiLineInput usage
<MultiLineInput placeholder="Placeholder teste" value={this.state.inputValue} onChange={e => this.setState({ inputValue: e })} onFocus={() => console.log("Focus")} onBlur={() => console.log("Blur")} onSubmit={(value)=> console.log(`submit:${value}`)} autoFocus disabled={this.state.disabled} required={this.state.required} name={this.state.name} spellcheck={this.state.spellcheck} minLength={this.state.minLength} maxLength={this.state.maxLength} readOnly={this.state.readonly} borderHidden={this.state.borderHidden} /> Copy
<MultiLineInput placeholder="Placeholder teste" value={this.state.inputValue} onChange={e => this.setState({ inputValue: e })} onFocus={() => console.log("Focus")} onBlur={() => console.log("Blur")} onSubmit={(value)=> console.log(`submit:${value}`)} autoFocus disabled={this.state.disabled} required={this.state.required} name={this.state.name} spellcheck={this.state.spellcheck} minLength={this.state.minLength} maxLength={this.state.maxLength} readOnly={this.state.readonly} borderHidden={this.state.borderHidden} />
MultiLineInput Properties
The "MultiLineInput" component is a multi-line text area to write your texts.
MultiLineInput usage
Param
MultiLineInput Properties
Has No Children