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
Asked
Active
Viewed 298 times
1 Answers
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
-
1+ , thats whats am looking for! , but it will be better if you add more details – abdalmonem Jun 21 '21 at 19:16