How To Take User Input In A Flutter App

[Solved] How To Take User Input In A Flutter App | Dart - Code Explorer | yomemimo.com
Question : how to take user input in a flutter app

Answered by : arkyyadav001

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'),
),

Source : | Last Update : Mon, 26 Oct 20

Answers related to how to take user input in a flutter app

Code Explorer Popular Question For Dart