Version: v7On this pagePlatformisPlatformisPlatform メソッドを使用して、アプリが特定のプラットフォームで実行されているかどうかを確認できます:import { isPlatform } from '@ionic/react';isPlatform('ios'); // iOSデバイスで実行されてる時は true を返しますユーザー実行しているプラットフォームに応じて、isPlatform(platformName)は true または false を返します。 同じアプリが複数のプラットフォーム名に対して true を返す場合があることに注意してください。 たとえば、iPad から実行するアプリは、mobile、ios、ipad、および tablet のプラットフォーム名に対して true を返します。 さらに、アプリが Cordova から実行されている場合、cordova も true になります。getPlatformsgetPlatforms メソッドを使用して、アプリが現在実行されているプラットフォームを判別できます。import { getPlatforms } from '@ionic/react';getPlatforms(); // iPhoneの場合 ["iphone", "ios", "mobile", "mobileweb"] を返します使用しているデバイスに応じて、 getPlatforms は複数の値を返すことができます。 それぞれの値はプラットフォームに応じて配列で返却されます。たとえば、iPhone では、mobile、ios、および iphone が返されます。Platforms次の表に、使用可能なすべてのプラットフォーム値とその説明を示します。Platform NameDescriptionandroida device running Androidcapacitora device running Capacitorcordovaa device running Cordovadesktopa desktop deviceelectrona desktop device running Electronhybrida device running Capacitor or Cordovaiosa device running iOSipadan iPad deviceiphonean iPhone devicemobilea mobile devicemobileweba web browser running in a mobile devicephableta phablet devicepwaa PWA apptableta tablet deviceCustomizing Platform Detection FunctionsThe function used to detect a specific platform can be overridden by providing an alternative function in the global Ionic config. Each function takes window as a parameter and returns a boolean.setupIonicReact({ platform: { /** The default `desktop` function returns false for devices with a touchscreen. * This is not always wanted, so this function tests the User Agent instead. **/ desktop: (win) => { const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(win.navigator.userAgent); return !isMobile; }, },});type PlatformConfig = { android?: ((win: Window) => boolean) | undefined; capacitor?: ((win: Window) => boolean) | undefined; cordova?: ((win: Window) => boolean) | undefined; desktop?: ((win: Window) => boolean) | undefined; electron?: ((win: Window) => boolean) | undefined; hybrid?: ((win: Window) => boolean) | undefined; ios?: ((win: Window) => boolean) | undefined; ipad?: ((win: Window) => boolean) | undefined; iphone?: ((win: Window) => boolean) | undefined; mobile?: ((win: Window) => boolean) | undefined; mobileweb?: ((win: Window) => boolean) | undefined; phablet?: ((win: Window) => boolean) | undefined; pwa?: ((win: Window) => boolean) | undefined; tablet?: ((win: Window) => boolean) | undefined;};