MediaSFU React Native
    Preparing search index...

    Interface EventSettingsModalParameters

    Parameters supplied to EventSettingsModal for contextual state and server communication.

    EventSettingsModalParameters

    Display Preferences:

    interface EventSettingsModalParameters {
        meetingDisplayType: string;
        autoWave: boolean;
        forceFullDisplay: boolean;
        meetingVideoOptimized: boolean;
        roomName: string;
        socket: Socket;
        showAlert?: ShowAlert;
    }
    Index

    Properties

    meetingDisplayType: string

    Current display mode selection ('video' | 'media' | 'all').

    autoWave: boolean

    Whether auto-wave (audiograph) animations are enabled.

    forceFullDisplay: boolean

    Forces full-grid display regardless of active speaker.

    meetingVideoOptimized: boolean

    Indicates if video layout is optimized for performance.

    Session Context:

    roomName: string

    Active room identifier.

    socket: Socket

    Socket connection used when persisting settings.

    showAlert?: ShowAlert

    Optional alert helper for user feedback.