TABBED property

WindowType TABBED
final

Adds the new browser window as a new tab in a tabbed window of the main window.

Officially Supported Platforms/Implementations:

  • MacOS 10.12++

Implementation

static final TABBED = WindowType._internalMultiPlatform('TABBED', () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.macOS:
      return 'TABBED';
    default:
      break;
  }
  return null;
});