Flutter Web factoryFunction is PlatformViewFactory || factoryFunction is ParameterizedPlatformViewFactory is not true

Viewed 29

I got this error on Flutter Web WebView stuations

my code base look like this

ui.platformViewRegistry.registerViewFactory(
    'someKey',
    (int _) => getIframe()
      ..id = 'SomeIframeId'
      ..src = url ?? "data:text/html;base64,${Constant.contentBase64}"
      ..style.border = 'none' as html.IFrameElement,
  );

this code base was work before Flutter 3.3.0 update can anyone know solution

The complete error: Assertion failed: org-dartlang-sdk:///flutter_web_sdk/lib/_engine/engine/platform_views/content_manager.dart:67:12 factoryFunction is PlatformViewFactory || factoryFunction is ParameterizedPlatformViewFactory is not true

0 Answers
Related