Files
NativeScript/apps/app/gallery-app/views/dialogs.xml

24 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<Page>
<ScrollView>
<StackLayout>
<Button text="alert" tap="alertTapped"/>
<Button text="alert with options" tap="alertWithOptionsTapped"/>
<Button text="alert with null" tap="alertWithNullTapped"/>
<Button text="alert with undefined" tap="alertWithUndefinedTapped"/>
<Button text="alert with number" tap="alertWithNumberTapped"/>
<Button text="alert with boolean" tap="alertWithBooleanTapped"/>
<Button text="alert with function" tap="alertWithFunctionTapped"/>
<Button text="alert with object" tap="alertWithObjectTapped"/>
<Button text="confirm" tap="confirmTapped"/>
<Button text="confirm with options" tap="confirmWithOptionsTapped"/>
<Button text="prompt" tap="promptTapped"/>
<Button text="prompt with options" tap="promptWithOptionsTapped"/>
<Button text="prompt with options password" tap="promptWithOptionsPasswordTapped"/>
<Button text="login" tap="loginTapped"/>
<Button text="login with options" tap="loginWithOptionsTapped"/>
<Button text="action" tap="actionTapped"/>
<Button text="action with options" tap="actionWithOptionsTapped"/>
</StackLayout>
</ScrollView>
</Page>