'How to add multiple lines react native web app
How to add multiple lines. I am only getting a field for one line.
<label htmlFor="materialrequired">Material Required</label>
<input
type="text"
id="materialrequired"
name="materialrequired"
placeHolder="Material Required..."
value={materialrequired || ""}
onChange={handleInputChange}
/>
Solution 1:[1]
Example of creating a multi-line input field:
<textarea rows="5" cols="60" name="text" placeholder="Enter text"></textarea>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Mamunur Rashid |
