Detect device type and platform information
Combines multiple detection methods for reliability:
This ensures mobile controls are shown on:
Results are cached to avoid re-parsing user-agent on every call. Cache is invalidated when screen dimensions change.
Complete platform information
const platform = detectPlatform();if (platform.isMobile) { // Show mobile controls return <MobileControls />;} Copy
const platform = detectPlatform();if (platform.isMobile) { // Show mobile controls return <MobileControls />;}
플랫폼감지
Detect device type and platform information
Combines multiple detection methods for reliability:
This ensures mobile controls are shown on:
Results are cached to avoid re-parsing user-agent on every call. Cache is invalidated when screen dimensions change.