diff --git a/bigbluebutton-html5/imports/ui/components/nav-bar/settings-dropdown/container.jsx b/bigbluebutton-html5/imports/ui/components/nav-bar/settings-dropdown/container.jsx
index caf4c2294b..adfa6fe380 100755
--- a/bigbluebutton-html5/imports/ui/components/nav-bar/settings-dropdown/container.jsx
+++ b/bigbluebutton-html5/imports/ui/components/nav-bar/settings-dropdown/container.jsx
@@ -13,7 +13,8 @@ export default withTracker((props) => {
const handleToggleFullscreen = () => toggleFullScreen();
const BROWSER_RESULTS = browser();
const isSafari = BROWSER_RESULTS.name === 'safari';
- const noIOSFullscreen = isSafari && BROWSER_RESULTS.versionNumber < 12;
+ const isIphone = navigator.userAgent.match(/iPhone/i);
+ const noIOSFullscreen = (isSafari && BROWSER_RESULTS.versionNumber < 12) || isIphone;
return {
amIModerator: props.amIModerator,
handleToggleFullscreen,
diff --git a/bigbluebutton-html5/imports/ui/components/video-provider/fullscreen-button/component.jsx b/bigbluebutton-html5/imports/ui/components/video-provider/fullscreen-button/component.jsx
index 70b0e72fe5..b4676487c6 100755
--- a/bigbluebutton-html5/imports/ui/components/video-provider/fullscreen-button/component.jsx
+++ b/bigbluebutton-html5/imports/ui/components/video-provider/fullscreen-button/component.jsx
@@ -36,7 +36,10 @@ const FullscreenButtonComponent = ({
className,
fullscreenRef,
handleToggleFullScreen,
+ isIphone,
}) => {
+ if (isIphone) return null;
+
const formattedLabel = intl.formatMessage(
intlMessages.fullscreenButton,
({ 0: elementName || '' }),
diff --git a/bigbluebutton-html5/imports/ui/components/video-provider/fullscreen-button/container.jsx b/bigbluebutton-html5/imports/ui/components/video-provider/fullscreen-button/container.jsx
index 59a28cc5f0..368ff191f5 100644
--- a/bigbluebutton-html5/imports/ui/components/video-provider/fullscreen-button/container.jsx
+++ b/bigbluebutton-html5/imports/ui/components/video-provider/fullscreen-button/container.jsx
@@ -6,7 +6,8 @@ const FullscreenButtonContainer = props => {
const handleToggleFullScreen = ref => toggleFullScreen(ref);
+ const isIphone = navigator.userAgent.match(/iPhone/i);
return (
-
+
);
};