isBrowserMobile static method
open from safari or chrome from android or ios
Implementation
static bool isBrowserMobile() {
bool isWeb = DeviceTools.isPlatformWeb();
bool isMobile = DeviceTools.isMobile();
return isWeb && isMobile;
}
open from safari or chrome from android or ios
static bool isBrowserMobile() {
bool isWeb = DeviceTools.isPlatformWeb();
bool isMobile = DeviceTools.isMobile();
return isWeb && isMobile;
}