BORDERLESS property
final
The window displays none of the usual peripheral elements. Useful only for display or caching purposes.
Officially Supported Platforms/Implementations:
- macOS WKWebView (Official API - NSWindow.StyleMask.borderless)
Implementation
static final BORDERLESS = WindowStyleMask._internalMultiPlatform(0, () {
switch (defaultTargetPlatform) {
case TargetPlatform.macOS:
return 0;
default:
break;
}
return null;
});