UI test for setting bckg and color of buttons inside dialogs

This commit is contained in:
zh-m
2016-11-30 15:25:09 +02:00
parent 825d577621
commit 35c48b30e6
4 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,4 @@
Button {
background-color: yellow;
color: cyan;
}

View File

@ -0,0 +1,12 @@
import { alert } from "ui/dialogs";
export function onTap() {
var options = {
title: "Race selection",
message: "Race chosen: Unicorn",
okButtonText: "OK"
};
alert(options).then(() => {
console.log("Race chosen!");
});
}

View File

@ -0,0 +1,5 @@
<Page xmlns="http://schemas.nativescript.org/tns.xsd">
<StackLayout>
<Button text="alert me" tap="onTap" margin="15"/>
</StackLayout>
</Page>

View File

@ -19,6 +19,7 @@ export function pageLoaded(args: EventData) {
examples.set("3113", "issues/issue-3113");
examples.set("3164", "issues/issue-3164");
examples.set("3175", "issues/issue-3175");
examples.set("3211", "issues/issue-3211");
let viewModel = new SubMainPageViewModel(wrapLayout, examples);
page.bindingContext = viewModel;