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 6c9d458 commit 587a646Copy full SHA for 587a646
1 file changed
ui/frame/frame.android.ts
@@ -444,6 +444,12 @@ var NativeActivity = {
444
this.super.onAttachFragment(fragment);
445
446
if (!(<any>fragment).entry) {
447
+ //HACK to skip native fragments not controlled by ns
448
+ if (fragment.getTag() === "datePicker" || fragment.getTag() === "timePicker") {
449
+ return;
450
+ }
451
+ //End of the hack
452
+
453
// There is no entry set to the fragment, so this must be destroyed fragment that was recreated by Android.
454
// We should find its corresponding page in our backstack and set it manually.
455
findPageForFragment(fragment, this.frame);
0 commit comments