isScreenSmall property

bool get isScreenSmall

Returns true if width < 360px (useful for responsive).

Example: context.isScreenSmall

Implementation

bool get isScreenSmall => MediaQuery.of(this).size.width < 360;