mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Enable fullscreen mode
This is needed on iOS to allow the YouTube embed to go fullscreen.
This commit is contained in:
parent
8e9fce7250
commit
2be835f23e
1 changed files with 4 additions and 0 deletions
|
|
@ -66,6 +66,10 @@ struct WebReader: PlatformViewRepresentable {
|
|||
webView.scrollView.verticalScrollIndicatorInsets.top = readerViewNavBarHeight
|
||||
webView.configuration.userContentController.add(webView, name: "viewerAction")
|
||||
|
||||
if #available(iOS 15.4, *) {
|
||||
webView.configuration.preferences.isElementFullscreenEnabled = true
|
||||
}
|
||||
|
||||
webView.scrollView.indicatorStyle = ThemeManager.currentTheme.isDark ?
|
||||
UIScrollView.IndicatorStyle.white :
|
||||
UIScrollView.IndicatorStyle.black
|
||||
|
|
|
|||
Loading…
Reference in a new issue