flutterflutter-webflutter2.0

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


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