kv-netflix/frontend/js/capacitor-mock.js
Khoa.vo 9d1d9bc741 v1.0.10: Android TV D-pad navigation + new app icons
- Added tabindex to video cards for D-pad focus
- Auto-detect TV mode and auto-focus first card
- Enhanced red glow focus styles for TV viewing distance
- Regenerated Android launcher icons with StreamFlix branding
2025-12-24 20:59:56 +07:00

25 lines
630 B
JavaScript

// Mock Capacitor Plugins for Browser/Dev Mode
export const StatusBar = {
setStyle: async () => { },
setBackgroundColor: async () => { },
show: async () => { },
hide: async () => { },
Style: { Dark: 'DARK', Light: 'LIGHT' }
};
export const Style = { Dark: 'DARK', Light: 'LIGHT' };
export const Haptics = {
impact: async () => { },
vibrate: async () => { },
notification: async () => { },
selectionStart: async () => { },
selectionChanged: async () => { },
selectionEnd: async () => { }
};
export const ImpactStyle = {
Heavy: 'HEAVY',
Medium: 'MEDIUM',
Light: 'LIGHT'
};