fix(android): nested dialog/fragment handling (#9495)

This commit is contained in:
Nathan Walker
2021-08-03 21:57:19 -07:00
committed by GitHub
parent 5309f2d0a7
commit 4c547bb00c
7 changed files with 78 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
<Page xmlns="http://schemas.nativescript.org/tns.xsd"
navigatingTo="navigatingTo"
loaded="onLoaded" unloaded="onUnloaded" backgroundColor="Red">
<StackLayout backgroundColor="PaleGreen" margin="10">
<Label text="{{ context }}"/>
<Button text="Show Alert" tap="{{ onTap }}"/>
<Button text="Open Nested Frames" tap="{{ openNestedFrames }}" />
</StackLayout>
</Page>