Flutter Tooltip on all widgets

后端 未结 2 1664
有刺的猬
有刺的猬 2021-02-20 10:02

Is there a way to set a tooltip on a Text widget:

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


        
2条回答
  •  闹比i
    闹比i (楼主)
    2021-02-20 10:39

    You can wrap your text into a Tooltip widget.

    new Tooltip(message: "Hello World", child: new Text("foo"));
    

提交回复
热议问题