mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
UI test for setting bckg and color of buttons inside dialogs
This commit is contained in:
12
apps/app/ui-tests-app/issues/issue-3211.ts
Normal file
12
apps/app/ui-tests-app/issues/issue-3211.ts
Normal 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!");
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user