Home > Software design >  Mirroring the look of a website in Flutter
Mirroring the look of a website in Flutter

Time:04-09

In my Flutter app, I want to show a website. As you know, websites have a mobile-friendly view. I want to show this view in application. For example, stackoverflow.com. I want to show the mobile view of stackoverflow.com on screen.

When I click on the text, the website will not open, as soon as the application is opened, the site I want will be displayed (reflected) in the application.

How can I do that?

CodePudding user response:

You are looking for a web view plugin, to embed a mobile version of any site on your flutter app.

You can look for this package: https://pub.dev/packages/flutter_inappwebview

  • Related