MediaSFU React Native
    Preparing search index...

    Interface OtherGridComponentOptions

    Options for rendering OtherGridComponent.

    OtherGridComponentOptions

    Content:

    interface OtherGridComponentOptions {
        backgroundColor: string;
        children: ReactNode;
        width: string | number;
        height: string | number;
        showAspect?: boolean;
        timeBackgroundColor?: string;
        showTimer: boolean;
        meetingProgressTime: string;
        style?: StyleProp<ViewStyle>;
        renderContent?: (
            options: {
                defaultContent: Element;
                dimensions: { width: number; height: number };
            },
        ) => Element;
        renderContainer?: (
            options: {
                defaultContainer: Element;
                dimensions: { width: number; height: number };
            },
        ) => Element;
    }
    Index

    Properties

    backgroundColor: string

    Background color for the container.

    children: ReactNode

    Elements rendered inside the secondary grid.

    Appearance:

    width: string | number

    Width of the grid.

    height: string | number

    Height of the grid.

    showAspect?: boolean

    Controls whether the grid is visible.

    timeBackgroundColor?: string

    Background tint applied to the timer.

    Advanced Render Overrides:

    showTimer: boolean

    Controls visibility of the meeting progress timer.

    meetingProgressTime: string

    Time string displayed by the timer.

    style?: StyleProp<ViewStyle>

    Additional styles for the outer container.

    Timer:

    renderContent?: (
        options: {
            defaultContent: Element;
            dimensions: { width: number; height: number };
        },
    ) => Element

    Customize the inner layout.

    renderContainer?: (
        options: {
            defaultContainer: Element;
            dimensions: { width: number; height: number };
        },
    ) => Element

    Replace the outer container implementation.