I used flutter_webview_plugin 0.3.8, I embedd vimeo player and played it on ios the fullscreen button shows up but not in android.
The website has iframe on it,
"<--iframe src="https://player.vimeo.com/video/{video id here..}?title=0&byline=0&portrait=0" width="100vh" height="100%" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen>"
return WebviewScaffold(
url: widget.data.link,
withJavascript: true,
withZoom: false,
appBar: AppBar(
title: Text(""),
elevation: 1
),
initialChild: Container(
color: Colors.white,
child: const Center(
child: SpinKitRing(
color: Colors.black,
size: 30.0,
lineWidth: 2.0,
),
),) );



