mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
import { alert } from "tns-core-modules/ui/dialogs";
|
|
|
|
export function onTap() {
|
|
var options = {
|
|
title: "Race selection",
|
|
message: "Race chosen: Unicorn",
|
|
okButtonText: "OK"
|
|
};
|
|
alert(options).then(() => {
|
|
console.log("Race chosen!");
|
|
});
|
|
}
|