Version: v7On this pageion-navshadowNavは、任意のコンポーネントをロードし、スタックに新しいコンポーネントを追加するためのスタンドアロンコンポーネントです。RouterOutletとは異なり、Navは特定のルーターに関連付けられていません。つまり、Navコンポーネントをロードして他のコンポーネントをスタックに追加しても、ルーター全体のアプリケーションには影響しません。これは、独自のサブナビゲーションを必要とするが、アプリのURLに縛られないモーダルを持つことができるユースケースに適しています。NavLinkを利用するNavLinkは、Navと対話する際の簡略化されたAPIです。開発者は、コンポーネントをカスタマイズしたり、コンポーネントのプロパティを渡したり、ルートアニメーションの方向を変更したり、ナビゲート時のカスタムアニメーションを定義したりすることができます。AngularJavaScriptReactVueiOSMDInterfacesNavCustomEvent必須ではありませんが、このコンポーネントから発行される Ionic イベントでより強く型付けを行うために、CustomEvent インターフェースの代わりにこのインターフェースを使用することが可能です。interface NavCustomEvent extends CustomEvent { target: HTMLIonNavElement;}プロパティanimatedDescriptiontrueの場合、コンポーネントの遷移をアニメーションで表現します。AttributeanimatedTypebooleanDefaulttrueanimationDescriptionBy default ion-nav animates transition between pages based in the mode (ios or material design). However, this property allows to create custom transition using AnimationBuilder functions.AttributeundefinedType((baseEl: any, opts?: any) => Animation) | undefinedDefaultundefinedrootDescriptionロードするルートNavComponentAttributerootTypeFunction | HTMLElement | ViewController | null | string | undefinedDefaultundefinedrootParamsDescriptionルートコンポーネントの任意のパラメータAttributeundefinedTypeundefined | { [key: string]: any; }DefaultundefinedswipeGestureDescriptionナビコンポーネントがスワイプで戻ることができるようにする場合。Attributeswipe-gestureTypeboolean | undefinedDefaultundefinedイベントNameDescriptionionNavDidChangeナビのコンポーネントが変更されたときに発生するイベントionNavWillChangeナビコンポーネントが変更されたときに発生するイベントメソッドcanGoBackDescription現在のビューが戻ることができる場合は true を返します。SignaturecanGoBack(view?: ViewController) => Promise<boolean>getActiveDescriptionアクティブビューを取得します。SignaturegetActive() => Promise<ViewController | undefined>getByIndexDescription指定されたインデックスにあるビューを取得します。SignaturegetByIndex(index: number) => Promise<ViewController | undefined>getPreviousDescription前のビューを取得します。SignaturegetPrevious(view?: ViewController) => Promise<ViewController | undefined>insertDescriptionInserts a component into the navigation stack at the specified index. This is useful to add a component at any point in the navigation stack.Signatureinsert<T extends NavComponent>(insertIndex: number, component: T, componentProps?: ComponentProps<T> | null, opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>insertPagesDescriptionInserts an array of components into the navigation stack at the specified index. The last component in the array will become instantiated as a view, and animate in to become the active view.SignatureinsertPages(insertIndex: number, insertComponents: NavComponent[] | NavComponentWithProps[], opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>popDescriptionPop a component off of the navigation stack. Navigates back from the current component.Signaturepop(opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>popToDescriptionナビゲーションスタック内の特定のインデックスにポップします。SignaturepopTo(indexOrViewCtrl: number | ViewController, opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>popToRootDescriptionスタックのルートまで戻ってナビゲートする、それがどんなに遠くても。SignaturepopToRoot(opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>pushDescriptionPush a new component onto the current navigation stack. Pass any additional information along as an object. This additional information is accessible through NavParams.Signaturepush<T extends NavComponent>(component: T, componentProps?: ComponentProps<T> | null, opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>removeIndexDescription指定されたインデックスにあるコンポーネントをナビゲーションスタックから削除します。SignatureremoveIndex(startIndex: number, removeCount?: number, opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>setPagesDescriptionSet the views of the current navigation stack and navigate to the last view. By default animations are disabled, but they can be enabled by passing options to the navigation controller. Navigation parameters can also be passed to the individual pages in the array.SignaturesetPages(views: NavComponent[] | NavComponentWithProps[], opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>setRootDescription現在のナビゲーションスタックのルートをコンポーネントに設定します。SignaturesetRoot<T extends NavComponent>(component: T, componentProps?: ComponentProps<T> | null, opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>CSS Shadow PartsNo CSS shadow parts available for this component.CSSカスタムプロパティNo CSS custom properties available for this component.SlotsNo slots available for this component.