Windows application

I developed a Windows application using Flutter, and I want the application to open like a kiosk device, without the desktop loading. I have added it to the startup options, but the desktop loads first, and then the application opens. How can I make the application open without the desktop loading?

I guess that’s a question outside the Flutter context and better asked on some Windows forum or stack overflow. Because you nerd to find out how to boot windows into kiosk mode showing just one app.

You can change the shell using registry and disable ctrl+alt+del using policies (along with auto-logon, startup screen, etc.): windows shell for java kiosk application - Stack Overflow

You can also lock the desktop using the win32 api (you already have a win32 project on your Flutter app): Lock Windows Desktop- CodeProject

p.s.: I miss codeproject so much… people were not so #$&#& those days

2 Likes