我正在尝试从 Flutter 中的 web 视图打开以下脚本:
<model-viewer src="https://dashboard.impiattalo.com/storage/app/public/259/bistecca.gltf" alt="A 3D model of an astronaut" auto-rotate camera-controls ar ar-modes="web-xr scene-viewer quick-look fallback" ar-scale="auto"></model-viewer>
当我尝试从 Chrome 打开 ar 时,它工作得很好,在颤动的 web 视图中它不起作用,它给了我这个错误。
这是我使用的代码:
child: WebView(
initialUrl:
'https://dashboard.impiattalo.com/3DViewer?url=${_con.food?.fbx_model?.url}',
javascriptMode: JavascriptMode.unrestricted,
gestureRecognizers: <
Factory<OneSequenceGestureRecognizer>>{
Factory<VerticalDragGestureRecognizer>(
() => VerticalDragGestureRecognizer()
..onUpdate = (_) {},
)
},
),
这是 pubspec :
webview_flutter: ^0.3.20+2
你有什么建议吗?感谢您的建议