defaultPlatform property

({Alignment child, Alignment popover}) get defaultPlatform

The platform-specific default popover and child anchors.

Implementation

static ({Alignment popover, Alignment child}) get defaultPlatform => FTouch.primary
    ? (popover: Alignment.bottomCenter, child: Alignment.topCenter)
    : (popover: Alignment.topCenter, child: Alignment.bottomCenter);