textfield in flutter hint code example
Example 1: flutter text field form
TextField(
decoration: InputDecoration(
border: InputBorder.none,
hintText: 'Enter a search term'
),
);
Example 2: all text filed and input widget in flutter
TextFormField(
decoration: InputDecoration(
labelText: 'Enter your username'
),
);