isMobile property

bool get isMobile

Returns true if the platform is mobile or the width is less than 600.

Implementation

bool get isMobile =>
    themeData.platform == TargetPlatform.android ||
    themeData.platform == TargetPlatform.iOS ||
    width < 600;