Dart中的requestFullscreen如何工作?我希望在移动设备上启用全屏模式。
我写了以下代码。但它什么都没改变。
querySelector(".btn").onTouchEnd.listen((l) {
var body = document.body;
body.requestFullscreen();
});
但它没有奏效。我在点击总是同样的错误document.body.requestFullscreen is not a function
答案 0 :(得分:0)
似乎是https://api.dartlang.org/stable/1.24.3/dart-html/VideoElement/enterFullscreen.html,所以你需要在你的视频元素上调用它。
编辑:哦,是的,还有https://api.dartlang.org/stable/1.24.3/dart-html/Element/requestFullscreen.html - 可能就是你想要的那个。
Edit2:显然,这已经被问及并得到解答,需要一种解决方法:How to request fullscreen in compiled dart