Is there a way to set a tooltip on a Text widget:
tooltip
Text
new Text( \"Some content\", tooltip: \"Displays a message to you\" )
You can wrap your text into a Tooltip widget.
new Tooltip(message: "Hello World", child: new Text("foo"));