如何在flutter中使用FloatingActionButton“快速拨号”菜单的多个选项?

时间:2018-01-15 05:34:58

标签: button methods menu flutter

我正在使用来自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");},
              ),

我的所有图标都成功打印“你好”。如何让他们使用不同的方法或专门的导航?

1 个答案:

答案 0 :(得分:2)

operator_postinc()

您可以将其用作List<VoidCallback> functions = [(){ print("hello 1"); }, () { print("hello 2"); }];