gpt4 book ai didi

dart - 以编程方式显示工具提示

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

enter image description here

我想在按下 float 操作按钮时显示工具提示。但我不知道如何以编程方式显示它。

有没有办法显示出来?

最佳答案

目前没有官方方法可以做到这一点。

但是,有一个解决方法:使用 _TooltipState 中的 ensureTooltipVisible 使用 GlobalKey 来获取它。

通常,您会在小部件实例化 Tooltip 中使用以下字段:最终 key = new GlobalKey();

然后,在您的工具提示上,您将分配此键:

new Tooltip(
key: key,
...
),

最后,在 FloatingButtononPressed 中,您可以:

onPressed: () {
final dynamic tooltip = key.currentState;
tooltip.ensureTooltipVisible();
},

关于dart - 以编程方式显示工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49068414/

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