Touch Interaction Enabled
const ontouchInteractionChange = (isEnabled: boolean, timestamp?: Date) => {
console.log(isEnabled, timestamp);
};
COBI.app.touchInteractionEnabled.subscribe(onThemeChange);
COBI.app.touchInteractionEnabled.unsubscribe(onThemeChange);const ontouchInteractionChange = (isEnabled, timestamp) => {
console.log(isEnabled, timestamp);
};
COBI.app.touchInteractionEnabled.subscribe(onThemeChange);
COBI.app.touchInteractionEnabled.unsubscribe(onThemeChange);Last updated