How to open Page Route in New Tab in Flutter Web
To open a new tab or browser window in a Flutter application, you can make use of the url_launcher package. This package allows you to launch URLs and open them in the default browser on the device. First, make sure you have added the url_launcher package to your pubspec.yaml file: Then, you can use the url_launcher package to open the URL in a new tab or browser window. Here’s an example of how you can achieve this: In this example,
Read more