We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7625d6c commit 95c4ec5Copy full SHA for 95c4ec5
tns-core-modules/ui/frame/frame.android.ts
@@ -364,7 +364,7 @@ export class Frame extends FrameBase {
364
const newFragmentTag = `fragment${fragmentId}[${navDepth}]`;
365
const newFragment = this.createFragment(newEntry, newFragmentTag);
366
const transaction = manager.beginTransaction();
367
- const animated = this._getIsAnimatedNavigation(newEntry.entry);
+ const animated = currentEntry ? this._getIsAnimatedNavigation(newEntry.entry) : false;
368
// NOTE: Don't use transition for the initial navigation (same as on iOS)
369
// On API 21+ transition won't be triggered unless there was at least one
370
// layout pass so we will wait forever for transitionCompleted handler...
0 commit comments