isPhoneSmall static method

dynamic isPhoneSmall(
  1. BuildContext context
)

Implementation

static isPhoneSmall(BuildContext context ) {
  if( _chooseSmallestDeviceSize(context) < 400 ) {
    return true;
  } else {
    return false;
  }
}