dart – 所有小部件上的Flutter Tooltip

dart – 所有小部件上的Flutter Tooltip,第1张

概述有没有办法在Text小部件上设置工具提示: new Text( "Some content", tooltip: "Displays a message to you" ) 这不起作用.然而,对于像FloatingActionButton这样的东西,它确实有效,如mentioned here: new FloatingActionButton( onPressed: a 有没有办法在Text小部件上设置工具提示:

new Text(    "Some content",tooltip: "displays a message to you"  )

这不起作用.然而,对于像floatingActionbutton这样的东西,它确实有效,如mentioned here:

new floatingActionbutton(    onpressed: action,tooltip: "Action",child: new Icon(Icons.add),)

我知道Text类没有实现工具提示.无论如何,我想知道是否有办法做到这一点.

解决方法 您可以将文本包装到 Tooltip小部件中.

new tooltip(message: "Hello World",child: new Text("foo"));
总结

以上是内存溢出为你收集整理的dart – 所有小部件上的Flutter Tooltip全部内容,希望文章能够帮你解决dart – 所有小部件上的Flutter Tooltip所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1000600.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存