gpt4 book ai didi

flutter - Flutter 中的 FloatingActionButton onLongPress 监听器

转载 作者:IT王子 更新时间:2023-10-29 06:52:14 25 4
gpt4 key购买 nike

我需要在我的应用程序中长按 FloatingActionButton 期间执行辅助操作。

floatingActionButton: FloatingActionButton(
onPressed: someFunction,
child: Icon(Icons.add),
onLongPressed: //Something like this or any other solution
),

最佳答案

我建议使用 InkWell 这样您也可以产生链式 react 。

这里是你如何使用它。

floatingActionButton: InkWell(
splashColor: Colors.blue,
onLongPress: () {
// handle your long press functionality here
},
child: FloatingActionButton(
child: Icon(Icons.add),
onPressed: someFunction,
),
)

关于flutter - Flutter 中的 FloatingActionButton onLongPress 监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57680897/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com