How to navigate link in new tab in flutter web without android
In Flutter web, you can navigate to a link in a new tab without relying on Android-specific code by using the url_launcher package. Here’s how you can do it: Update your Dart code to use url_launcher:dart By using the url_launcher package and specifying webOnlyWindowName: ‘_blank’, you ensure that the URL opens in a new tab … Read more