DEFAULT property

EnvironmentScrollbarStyle DEFAULT
final

Browser default ScrollBar style.

Officially Supported Platforms/Implementations:

  • Windows WebView2

Implementation

static final DEFAULT = EnvironmentScrollbarStyle._internalMultiPlatform(
  0,
  () {
    switch (defaultTargetPlatform) {
      case TargetPlatform.windows:
        return 0;
      default:
        break;
    }
    return null;
  },
);