Platform
isPlatform
The isPlatform method can be used to test if your app is running on a certain platform:
import { isPlatform } from '@ionic/react';
isPlatform('ios'); // returns true when running on a iOS device
Depending on the platform the user is on, isPlatform(platformName) will return true or false. Note that the same app can return true for more than one platform name. For example, an app running from an iPad would return true for the platform names: mobile, ios, ipad, and tablet. Additionally, if the app was running from Cordova then cordova would be true.