[009] 플러터 (Flutter) Tip - 웹뷰(WebView)에서 유튜브 영상 전체화면 활성화하기

2023. 8. 5. 23:13모바일어플개발/Flutter Tips

반응형

안녕하세요~ totally 개발자입니다.

 

WebView를 사용하시다보면 웹사이트 페이지에 있는 iframe 태그로 구현된 유튜브 영상의 경우 전체화면을 눌러도 안드로이드의 경우 전체화면이 되지 않는 경우가 있습니다. 현재 webview_flutter로는 이것을 해결할 방법이 아직 발견되지 않았고 flutter_inappwebview 패키지를 사용하여 해결할 수 있습니다. 

 

Step 1: pubspec.yaml에 flutter_inappwebview 패키지를 추가합니다.

 

 

 

Step 2: 사용하실 페이지에서 import합니다.

 

 

Step 3: 먼저 controller 변수 선언하신 뒤, 아래처럼 InAppWebView 위젯으로 url를 넣어주면 됩니다.

 

개발에 도움이 되셨기를 바랍니다.

 

Reference:

https://stackoverflow.com/questions/55237533/fullscreen-video-in-webview-is-not-working-in-flutter

 

Fullscreen Video in Webview is not working in Flutter

I am using https://github.com/pichillilorenzo/flutter_inappbrowser to display a webview in my app. The video on the website is playing but not displaying in fullscreen even when the fullscreen butt...

stackoverflow.com

 

 

반응형