本文介绍了如何识别在颤动中单击了哪个按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

每次单击一个按钮时,我有4个按钮显示不同的列表.如何识别使用颤动单击的按钮?

I have 4 buttons showing a different list each time a button is clicked . How to identify which button is clicked using flutter ?

推荐答案

您可以为每个按钮分配一个调用不同方法的回调

You can assign a callback that calls a different method for each button

new FlatButton(
  child: new Text(confirmText),
  onPressed: () => onOkPressed(),
),

或者您可以传递参数

new FlatButton(
  child: new Text(confirmText),
  onPressed: () => onButtonPressed('okButton'),
),

这篇关于如何识别在颤动中单击了哪个按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 04:27