📌  相关文章
📜  如何在颤振应用程序中获取用户输入 - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:50.440000             🧑  作者: Mango

代码示例1
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'),
),