基本上我想编写一个函数来检测设备的大小(如果它的大小)
例如: 三星S6,S7,S8不允许使用功能,因为它们的尺寸不大,如iPad或三星Tab。
答案 0 :(得分:1)
您可以使用Platform.is()。
import { Platform } from 'ionic-angular';
constructor(public platform: Platform)
public myFunction(){
if(this.platform.is('tablet'){
//execute function
}
}
希望这有帮助。