textarea in flutter code example
Example 1: flutter textarea input
TextField(
keyboardType: TextInputType.multiline,
textInputAction: TextInputAction.newline,
minLines: 1,
maxLines: 5,
)
Example 2: flutter text field
TextField(
decoration: InputDecoration(
border: InputBorder.none,
hintText: 'Enter a search term'
),
);
Example 3: text form field flutter
TextFormField(
decoration: InputDecoration(
labelText: 'Enter your username'
),
);