Flutter Webview Plugin встроенный vimeo нет полноэкранной кнопки на Android, но он имеет на IOS - PullRequest
0 голосов
/ 25 октября 2019

Я использовал flutter_webview_plugin 0.3.8, я вставил проигрыватель vimeo и играл на нем, если полноэкранная кнопка отображается, но не на Android.

На сайте есть iframe,

"<--iframe src = "https://player.vimeo.com/video/{video id здесь ..}? title = 0 & byline = 0 & Portrait = 0" width = "100vh" height = "100%" frameborder = "0" webkitallowfullscreen mozallowfullscreen allowfullscreen> "

возврат 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,
  ),
),)  );

enter image description here enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...