isFbdevHandheld top-level property

bool get isFbdevHandheld

True when running on a no-DRM framebuffer handheld via the flutter_fbdev embedder (the engine reports the Linux target). Gate handheld code paths on this: button input, landscape layout, silent audio, skipping touch menus, etc.

Implementation

bool get isFbdevHandheld =>
    !kIsWeb && defaultTargetPlatform == TargetPlatform.linux;