Interface MeetingProgressTimerOptions

Configuration options for the MeetingProgressTimer component.

MeetingProgressTimerOptions

Timer Display:

interface MeetingProgressTimerOptions {
    meetingProgressTime: string;
    initialBackgroundColor?: string;
    position?:
        | "topLeft"
        | "topRight"
        | "bottomLeft"
        | "bottomRight";
    textStyle?: StyleProp<TextStyle>;
    showTimer?: boolean;
}

Properties

meetingProgressTime: string

Current elapsed meeting time (format: "HH:MM" or "MM:SS")

initialBackgroundColor?: string

Background color of the timer badge

position?:
    | "topLeft"
    | "topRight"
    | "bottomLeft"
    | "bottomRight"

Timer badge position on screen

Styling:

textStyle?: StyleProp<TextStyle>

Additional custom styles for timer text

showTimer?: boolean

Controls timer visibility

Positioning: