1

I am designing a web application using flutter and I want users to be able to see the destination url which usually appear at the bottom corner of desktop browser windows when they click or hover over the elements containing the link on the web page

Leonardo Costa
  • 994
  • 11
  • 26
Dzeri
  • 891
  • 1
  • 8
  • 15

1 Answers1

3

Please install plugin https://pub.dev/packages/url_launcher

Link(uri: 'https://stackoverflow.com', 
     builder: (context, onLlink) {
         return TextButton(child: Text('Click Here'), onPressed: onLlink)
     })

For more detailed please check below link https://www.youtube.com/watch?v=ujlqRTJg48g

Nilesh Senta
  • 5,236
  • 2
  • 19
  • 27