Interface MeetingProgressTimerOptions

Interface defining the props for the MeetingProgressTimer component.

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

Properties

meetingProgressTime: string

The current progress time of the meeting to be displayed.

initialBackgroundColor?: string

The initial background color of the timer.

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

The position of the timer on the screen.

'topLeft'
textStyle?: StyleProp<TextStyle>

Additional styles to apply to the timer text.

showTimer?: boolean

Flag to determine whether the timer should be displayed.

true