mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
feat(conference) added React Navigation
Introduce navigation for all in-conference screens.
This commit is contained in:
@@ -44,12 +44,7 @@ type Props = {
|
||||
/**
|
||||
* Whether or not the reactions feature is enabled.
|
||||
*/
|
||||
_reactionsEnabled: boolean,
|
||||
|
||||
/**
|
||||
* The redux {@code dispatch} function.
|
||||
*/
|
||||
dispatch: Function
|
||||
_reactionsEnabled: boolean
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -88,10 +83,12 @@ function Toolbox(props: Props) {
|
||||
<VideoMuteButton
|
||||
styles = { buttonStylesBorderless }
|
||||
toggledStyles = { toggledButtonStyles } />
|
||||
{ additionalButtons.has('chat')
|
||||
{
|
||||
additionalButtons.has('chat')
|
||||
&& <ChatButton
|
||||
styles = { buttonStylesBorderless }
|
||||
toggledStyles = { backgroundToggledStyle } />}
|
||||
toggledStyles = { backgroundToggledStyle } />
|
||||
}
|
||||
|
||||
{ additionalButtons.has('raisehand') && (_reactionsEnabled
|
||||
? <ReactionsMenuButton
|
||||
|
||||
Reference in New Issue
Block a user