I'm trying to play video stored in google drive in flutter app. I embed the video and I got the url. when I try to play the video it not work in android while in IOS it works well. Is the plugin don't work will in android or I my way to use plugin is wrong?
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(),
),
);
}