Clock Visible

If the clock overlay is shown on top of module experiences.

By default, the clock is visible. When written immediately on module start, the clock is not shown at all.

const clockVisibleCallback = (value: boolean, timestamp?: Date) => {
    console.log(value, timestamp);
};


COBI.app.clockVisible.write(true, clockVisibleCallback);

Last updated