BORDERLESS property

WindowStyleMask BORDERLESS
final

The window displays none of the usual peripheral elements. Useful only for display or caching purposes.

Officially Supported Platforms/Implementations:

Implementation

static final BORDERLESS = WindowStyleMask._internalMultiPlatform(0, () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.macOS:
      return 0;
    default:
      break;
  }
  return null;
});