有没有办法在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"));