-2

I'm trying to implement something like this. (The info button onTap must display that above popup)
I've searched everywhere and I could find anything ready to implement. I tried to do it manually myself but couldn't help.

Would be grateful if this community could help. Thank you!

1 Answers1

1

There is a widget for that scenario called "Tooltip" and some of the Material widgets come with tooltip included.

IconButton(
  icon: Icon(Icons.info),
  tooltip: "Your description here",
)

To find out more, you can check this link

Check out this thread: Flutter Tooltip on One Tap

snap
  • 175
  • 1
  • 12