Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to HIDE "Polls", "Room Name" and "Conference" Fields #85

Open
chegmarco1989 opened this issue Sep 8, 2024 · 4 comments
Open

How to HIDE "Polls", "Room Name" and "Conference" Fields #85

chegmarco1989 opened this issue Sep 8, 2024 · 4 comments

Comments

@chegmarco1989
Copy link

chegmarco1989 commented Sep 8, 2024

Hello.

First of all, here is what I did:

Future<void> _startJitsiMeeting(String roomName) async {
  var jitsiMeet = JitsiMeet();
  var options = JitsiMeetConferenceOptions(
    room: roomName, 
    serverURL: Uri.parse("https://meet.domain.com"), 
    configOverrides: {
      "startWithAudioMuted": false,
      "startWithVideoMuted": false,
    },
    featureFlags: {
      FeatureFlags.chatEnabled: true, 
      FeatureFlags.preJoinPageEnabled: false,
      // FeatureFlags.callIntegrationEnabled: true, 
    }
  );

  await jitsiMeet.join(options);
}

But I want want I don't know how to:

1 - disable (hide) "Polls" Feature when enabling "Chat" ?

2 - disable (hide) this "Room Name" field on the Home Page that I saw on JitSI itself Mobile:

Room Name

???

3 - disable (hide) this "Conference" field also on Settings Page:

Conference

???

PLEASE, HELP ME TO HIDE ALL OF THEM IN MY NEW Flutter integration.

@Calinteodor
Copy link
Contributor

Calinteodor commented Sep 12, 2024

  1. You can override config by setting disablePolls: true;
  2. Room name input cannot be disabled or hidden. If you want, you can override config by welcomePage.disabled: true, this hides the whole welcome page, and create your own page.

@chegmarco1989
Copy link
Author

Thanks @Calinteodor for your answer.

But you didn't get me answer for the point 3:

3 - disable (hide) this "Conference" field also on Settings Page:

Conference

???

Awaiting your answer.

@Calinteodor
Copy link
Contributor

That is part of the welcome page and cannot be disabled or hidden. So the answer for 2 applies for 3.

@chegmarco1989
Copy link
Author

All right. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants