Replies: 2 comments 3 replies
-
hello, I think I accidentally found (part of) the answer, though I am pretty unsure. I am creating a windows screensaver app, and screensavers on windows are essentially executables running fullscreen with |
Beta Was this translation helpful? Give feedback.
-
Hi, import { appWindow } from "@tauri-apps/api/window";
await appWindow.setFullscreen(true); In tauri.conf.json : "tauri": {
"allowlist": {
"window": {
"setFullscreen": true
}
}, |
Beta Was this translation helpful? Give feedback.
-
If I don't want my user to exit fullscreen by pressing keyboard
ESC
orF11
and by switching between desktop. Is there any way I could achieve this in tauri?Beta Was this translation helpful? Give feedback.
All reactions