dart – 所有小部件上的Flutter Tooltip

前端之家收集整理的这篇文章主要介绍了dart – 所有小部件上的Flutter Tooltip前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法在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"));

猜你在找的Flutter相关文章