Home > database >  How to open an Url using In-App Browser from a flutter application from a button click?
How to open an Url using In-App Browser from a flutter application from a button click?

Time:12-23

I am developing a flutter project and i want to open a Url using an in-app browser when a button in clicked. I don't want the browser to leave the flutter application. What are the possible ways to do this?

Thank you in advance.

CodePudding user response:

What you are looking for is called a Webview.

Look at https://pub.dev/packages/webview_flutter

  • Related