webview_flutter插件显示网页的时候在iOS无法显示

在Flutter中使用webview_flutter插件显示网页的时候在iOS无法显示,并且报错:

Trying to embed a platform view but the PrerollContext does not support embedding

解决办法:在info.list添加:

 
   io.flutter.embedded_views_preview
    
  

如果需要访问 HTTP 网页,还需要添加以下。

    NSAppTransportSecurity
    
    NSAllowsArbitraryLoads
    
    

你可能感兴趣的:(webview_flutter插件显示网页的时候在iOS无法显示)