Interface OnAttachTab<T>

interface OnAttachTab<T> {
    currentNavigationBarTab?: INavigationBarTab<T, T>;
    onAttachTab?(): void;
}

Type Parameters

  • T = any

Properties

currentNavigationBarTab?: INavigationBarTab<T, T>

Methods

  • Runs when a navigation bar tab is first attached to the implementing component. If the tab is recycled, it will only run once.

    Returns void