How to show an url at the bottom corner of a desktop browser window on Flutter web?

Issue

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

Solution

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

Answered By – Nilesh Senta

Answer Checked By – Gilberto Lyons (FlutterFixes Admin)

Leave a Reply

Your email address will not be published. Required fields are marked *