Answers for "load web page in flutter"

1

Loading Website url in flutter app webview

WebViewPlus(
        initialUrl: 'https://protocoderspoint.com/',
        javascriptMode: JavascriptMode.unrestricted,
      )
Posted by: Guest on April-01-2022
1

flutter web load html

import 'dart:ui' as ui;
import 'dart:html';



ui.platformViewRegistry.registerViewFactory(
    'test-view-type',
    (int viewId) => IFrameElement()
      ..width = '640'
      ..height = '360'
      ..src = "https://www.youtube.com/embed/5VbAwhBBHsg"
      ..style.border = 'none');

//just an example if you know how to code then change then feel free to change the values
Posted by: Guest on May-10-2021

Browse Popular Code Answers by Language