TAB_SHOWN property

CustomTabsNavigationEventType TAB_SHOWN
final

Sent when the tab becomes visible.

Officially Supported Platforms/Implementations:

  • Android WebView

Implementation

static final TAB_SHOWN = CustomTabsNavigationEventType._internalMultiPlatform(
  5,
  () {
    switch (defaultTargetPlatform) {
      case TargetPlatform.android:
        return 5;
      default:
        break;
    }
    return null;
  },
);