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