每次单击按钮时,我有4个按钮显示不同的列表。如何识别使用颤动点击哪个按钮?
答案 0 :(得分:4)
您可以为每个按钮分配一个调用不同方法的回调
new FlatButton(
child: new Text(confirmText),
onPressed: () => onOkPressed(),
),
或者您可以传递参数
new FlatButton(
child: new Text(confirmText),
onPressed: () => onButtonPressed('okButton'),
),