isSmallScreen property
bool
get
isSmallScreen
Returns true if width < 360px (useful for responsive).
Example: context.isSmallScreen
Implementation
bool get isSmallScreen => MediaQuery.of(this).size.width < 360;