feat(ios): improved handling for navigation events (#10757)

This commit is contained in:
Dimitris-Rafail Katsampas
2025-07-12 02:13:20 +03:00
committed by GitHub
parent 1ef47301bf
commit bca3452722
9 changed files with 118 additions and 156 deletions

View File

@@ -36,8 +36,10 @@ export interface NavigationEntry extends ViewEntry {
}
export interface NavigationContext {
entry: BackstackEntry;
// TODO: remove isBackNavigation for NativeScript 7.0
entry?: BackstackEntry;
/**
* @deprecated Use navigationType instead.
*/
isBackNavigation: boolean;
navigationType: NavigationType;
}