Replies: 1 comment 2 replies
-
I am implementing Vidstack in an Ionic Angular app using the default player. The fullscreen button doesn't appear on iOS. With a little research, it seems that the player is getting back from iOS that fullscreen is not supported. const { canFullscreen, fullscreen } = player.state;
try {
await player.enterFullscreen()
} catch(e) {
console.log(e)
}
Trying to call It looks like the Fullscreen API is not supported here and here on iOS WebView. We are coming from Plyr which had a fallback of a "full window" which emulated a fullscreen. Vidstack must not have this fallback. Looks like the only option on iOS is to set Issues: |
Beta Was this translation helpful? Give feedback.
-
Hello, I am trying to display a video from youtube in my Ionic 7 and React 18 app but just cannot get the fullscreen button to work. I use custom layout and it work fine for play button. Are there any way to workaround it?
Here is my code and result using Custom Layout in iOS simulator (ignore the ugly style)
Beta Was this translation helpful? Give feedback.
All reactions