MediaSFU React Native
    Preparing search index...

    Variable MeetingProgressTimerConst

    MeetingProgressTimer: React.FC<MeetingProgressTimerOptions> = ...

    MeetingProgressTimer displays a compact badge showing the meeting's elapsed time with corner-anchored positioning.

    • Positioned in one of four screen corners for minimal layout interference.
    • Customizable background and text styling for brand alignment.
    • Optional visibility toggle for show/hide behavior.

    Timer badge configuration.

    Rendered meeting progress timer badge.

    import React from 'react';
    import { MeetingProgressTimer } from 'mediasfu-reactnative';

    function App() {
    return (
    <MeetingProgressTimer
    meetingProgressTime="15:30"
    initialBackgroundColor="blue"
    position="bottomRight"
    showTimer={true}
    textStyle={{ color: 'white', fontSize: 16 }}
    />
    );
    }

    export default App;