Enable fullscreen mode

This is needed on iOS to allow the YouTube embed to go fullscreen.
This commit is contained in:
Jackson Harper
2024-03-13 22:04:17 +08:00
parent 8e9fce7250
commit 2be835f23e

View File

@ -66,6 +66,10 @@ struct WebReader: PlatformViewRepresentable {
webView.scrollView.verticalScrollIndicatorInsets.top = readerViewNavBarHeight webView.scrollView.verticalScrollIndicatorInsets.top = readerViewNavBarHeight
webView.configuration.userContentController.add(webView, name: "viewerAction") webView.configuration.userContentController.add(webView, name: "viewerAction")
if #available(iOS 15.4, *) {
webView.configuration.preferences.isElementFullscreenEnabled = true
}
webView.scrollView.indicatorStyle = ThemeManager.currentTheme.isDark ? webView.scrollView.indicatorStyle = ThemeManager.currentTheme.isDark ?
UIScrollView.IndicatorStyle.white : UIScrollView.IndicatorStyle.white :
UIScrollView.IndicatorStyle.black UIScrollView.IndicatorStyle.black