我正在使用来自floatingActionButton的Speed Dial类型浮动菜单。我正在填充列表中的不同图标,但是我无法填充必要的onPressed:
方法。我的小部件编码如此......
child: new FloatingActionButton(
heroTag: "Y${icons[index]}",
backgroundColor: Colors.blue,
mini: true,
child: new Icon(icons[index], color: Colors.white),
onPressed: () {print("hello");},
),
我的所有图标都成功打印“你好”。如何让他们使用不同的方法或专门的导航?
答案 0 :(得分:2)
operator_postinc()
您可以将其用作List<VoidCallback> functions = [(){
print("hello 1");
}, () {
print("hello 2");
}];