Shows a question dialog with Ok and Cancel buttons.
Ok
Cancel
The message to show.
Optional
The dialog's options. If a string, it represents the dialog title.
A promise resolving to a boolean indicating whether Ok was clicked or not.
import { confirm } from '@tauri-apps/plugin-dialog';const confirmed = await confirm('Are you sure?', 'Tauri');const confirmed2 = await confirm('This action cannot be reverted. Are you sure?', { title: 'Tauri', kind: 'warning' }); Copy
import { confirm } from '@tauri-apps/plugin-dialog';const confirmed = await confirm('Are you sure?', 'Tauri');const confirmed2 = await confirm('This action cannot be reverted. Are you sure?', { title: 'Tauri', kind: 'warning' });
2.0.0
Shows a question dialog with
Ok
andCancel
buttons.