答案 0 :(得分:2)
目前还没有正式的方法来做到这一点。
但是,有一种解决方法:使用ensureTooltipVisible
_TooltipState
使用GlobalKey
来获取它。
通常,您在实例化Tooltip
的窗口小部件中有以下字段:
final key = new GlobalKey();
然后,在您的工具提示中,您将分配此密钥:
new Tooltip(
key: key,
...
),
最后在onPressed
的{{1}}内,您可以这样做:
FloatingButton
答案 1 :(得分:0)
FloatingActionButton
已有tooltip
属性。
floatingActionButton: new FloatingActionButton(
tooltip: "ADDED",
onPressed: (){},
child: new Icon(Icons.add),),
你要求的不同于此吗?
答案 2 :(得分:0)
/////// 从您的页面调用
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, '../client/build/index.html'));
});