Last active
August 3, 2026 07:30
-
-
Save jevin/ba516ccede3b4cd43eb64fab2f105258 to your computer and use it in GitHub Desktop.
Text Later
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let w = new ListWidget(); | |
| let text = w.addText("Hello World!"); | |
| Script.setWidget(w); | |
| Script.complete(); | |
| w.presentSmall(); | |
| // const number = args.plainTexts | |
| // const alert = new Alert() | |
| // alert.title = "Schedule a WhatsApp message for later!"; | |
| // alert.message = "Fill in the form!"; | |
| // const message = alert.addTextField("Enter your message") | |
| // alert.addAction("Schedule") | |
| // alert.addCancelAction("Cancel"); | |
| // const alertAction = await alert.present() | |
| // if (alertAction === -1) { | |
| // return; | |
| // } | |
| // const schemaURL = `number: ${number} message.text: ${message.text}, alert.textFieldValue(0): ${alert.textFieldValue(0)}` | |
| // console.log(schemaURL); | |
| // QuickLook.present(schemaURL) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment