'Flutter _launchURL

i am using url_launcher in my aplicacion, it's working but i need open in pc view, Any idea for this?

  _launchURL(url) async {
    if (!await launchUrl(url,
        webViewConfiguration: const WebViewConfiguration(
            enableJavaScript: true, enableDomStorage: true),
        mode: LaunchMode.externalApplication)) throw 'Could not launch';
  }


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source