interface OnTabEnter {
    onTabEnter(params: OnTabEnterParams): void;
}

Methods

Methods

  • Function to run when the Tab is entered, this happens on first load as well

    Parameters

    • params: OnTabEnterParams

      from is previous tab (possibly undefined on first load), to is always this tab; type INavigationBarTab, recycled is whether the component was recycled or not

    Returns void