flutter-tizen / plugins

Flutter plugins for Tizen
64 stars 46 forks source link

[youtube_player_iframe] How to embed a YouTube player in an app #517

Open swift-kim opened 1 year ago

swift-kim commented 1 year ago

To use the youtube_player_iframe plugin on Tizen devices,

The following is a screenshot from a TV device.

Known issues:

JSUYA commented 1 year ago

Now webview_flutter_tizen v0.7.0 (webview_flutter v4) version is available. But you need to add below changes.

packages/youtube_player_iframe/lib/src/controller/youtube_player_controller.dart

- 63      )
- 64     ..enableZoom(false);
+ 63     );
+ 64   // ..enableZoom(false);

When testing on my tv device, youtube player displayed full screen when the app was launched. and playback doesn't work normally.

swift-kim commented 1 year ago

@JSUYA I had a similar problem so I posted this issue which may be related: https://github.com/flutter-tizen/embedder/issues/19