Home > Software design >  Run local HTML, CSS & JS in Flutter Web
Run local HTML, CSS & JS in Flutter Web

Time:12-13

So I’m trying to run local HTML, JS, CSS from flutter Web.

I figured out that you usually could use flutter Web View plus, but it isn’t compatible with Web.

I also figured out that it isn’t a big problem showing plain HTML in Flutter Web (through WebView_Web). But I can’t figure out how to depict HTML code & additionally JS in Flutter Web.

How could I achieve wished behavior or does somebody have a link to a tutorial/video that could help?

CodePudding user response:

For wrapping JS libraries with HTML you can use IFrame approach that is described enter image description here

  • Related