✔️ How to create ALERT without OK button

:one: without ok button

:two: closes on setTimeout

image

1 Like

You can use Progress Infinite or toast.

You can design a dialog box for yourself.

 app.dialog.create({
    title: 'Vertical Buttons',
    text: 'Dialog with vertical buttons',    
    verticalButtons: true,
  }).open();
1 Like