TAB_SHOWN property

Sent when the tab becomes visible.

Officially Supported Platforms/Implementations:

  • Android native WebView

Implementation

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