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所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)