我正在尝试在颤振应用程序中播放存储在谷歌驱动器中的视频。我嵌入了视频,我得到了网址。当我尝试播放视频时,它在 android 中不起作用,而在 IOS 中它运行良好。插件在android中不起作用还是我使用插件的方式错误?
flutter_webview_plugin: ^0.3.0+2
Widget build(BuildContext context) {
return WebviewScaffold(
appBar: AppBar(
title: Text("play video"),
),
url: "https://drive.google.com/file/d/1O8WF2MsdyoKpQZE2973IFPRpqwKUjm_q/preview",
initialChild: Center(
child: CircularProgressIndicator(),
),
);
}