Replies: 2 comments 4 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 |
2 replies
|
Hi, import { appWindow } from "@tauri-apps/api/window";
await appWindow.setFullscreen(true);In tauri.conf.json : "tauri": {
"allowlist": {
"window": {
"setFullscreen": true
}
}, |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
If I don't want my user to exit fullscreen by pressing keyboard
ESCorF11and by switching between desktop. Is there any way I could achieve this in tauri?All reactions