isTablet static method

bool isTablet(
  1. BuildContext context
)

Returns true if the device is considered tablet

Implementation

static bool isTablet(BuildContext context) =>
    width(context) >= 600 && width(context) < 1024;