()
| 1 | import { alert } from '@nativescript/core/ui/dialogs'; |
| 2 | |
| 3 | export function onTap() { |
| 4 | var options = { |
| 5 | title: 'Race selection', |
| 6 | message: 'Race chosen: Unicorn', |
| 7 | okButtonText: 'OK', |
| 8 | }; |
| 9 | alert(options).then(() => { |
| 10 | console.log('Race chosen!'); |
| 11 | }); |
| 12 | } |