我不能使用flutter的文本字段,但是如果我提供任何已定义的值,则按钮可以使用。
带有输入字段的输出图像:
children: <Widget>[
Text(
'Output : $sum',
style: TextStyle(fontSize: 20.0, fontWeight: FontWeight.bold),
),
TextField(
keyboardType: TextInputType.number,
decoration: InputDecoration(hintText: 'Enter 1st number'),
controller: t1,
),
TextField(
keyboardType: TextInputType.number,
decoration: InputDecoration(hintText: 'Enter 2nd number'),
controller: t2,
),