isPhone static method

bool isPhone()

判断是否是手机尺寸(宽度小于600dp)

Implementation

static bool isPhone() {
  return Get.width < 600;
}