How to open a link in a in-app browser window?. You can achieve that using flutter_web_browser plugin which opens web page in-app in Android chrome tabs style.
Example:
1 2 3 4 5 6 7 8 9 10 11 | body: new Center( child: new RaisedButton( onPressed: () => openBrowserTab(), child: new Text('Open website'), ), ), openBrowserTab() async { await FlutterWebBrowser.openWebPage(url: "https://gadgets.ndtv.com/", androidToolbarColor: Colors.deepPurple); } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.