如何识别在flutter中点击了哪个按钮
How to identify which button is clicked in flutter
我有 4 个按钮,每次单击按钮时显示不同的列表。如何使用 flutter 识别点击了哪个按钮?
您可以分配一个回调,为每个按钮调用不同的方法
new FlatButton(
child: new Text(confirmText),
onPressed: () => onOkPressed(),
),
或者你可以传递一个参数
new FlatButton(
child: new Text(confirmText),
onPressed: () => onButtonPressed('okButton'),
),
我有 4 个按钮,每次单击按钮时显示不同的列表。如何使用 flutter 识别点击了哪个按钮?
您可以分配一个回调,为每个按钮调用不同的方法
new FlatButton(
child: new Text(confirmText),
onPressed: () => onOkPressed(),
),
或者你可以传递一个参数
new FlatButton(
child: new Text(confirmText),
onPressed: () => onButtonPressed('okButton'),
),