pinput in flutter code example

Example 1: TextInput for flutter

TextField(
  decoration: InputDecoration(
    border: InputBorder.none,
    hintText: 'Enter a search term'
  ),
);

Example 2: how to take user input in a flutter app

For userinput, we have a widget called TextField(), An example is given below:
- The decoration field, is self explanatory.
- The labelText: tells user about what he/she has to provide in the respective TextField(). 
TextField(
	decoration: InputDecoration(labelText: 'Title'),
),

Tags:

Dart Example