mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
12 lines
298 B
TypeScript
12 lines
298 B
TypeScript
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!");
|
|
});
|
|
} |