Files
jitsi-meet/react/features/video-menu/actions.native.js
Robert Pintilii 7e5c283e3c feat(disableSelfView) Toggle self view on native (#10871)
Added toggle button in overflow menu
Created video menu with connection info and self view toggle buttons for local participant
2022-01-28 12:47:54 +02:00

34 lines
619 B
JavaScript

// @flow
import { hideDialog } from '../base/dialog';
import { RemoteVideoMenu, SharedVideoMenu, LocalVideoMenu } from './components/native';
/**
* Hides the local video menu.
*
* @returns {Function}
*/
export function hideLocalVideoMenu() {
return hideDialog(LocalVideoMenu);
}
/**
* Hides the remote video menu.
*
* @returns {Function}
*/
export function hideRemoteVideoMenu() {
return hideDialog(RemoteVideoMenu);
}
/**
* Hides the shared video menu.
*
* @returns {Function}
*/
export function hideSharedVideoMenu() {
return hideDialog(SharedVideoMenu);
}
export * from './actions.any';