Last active
April 5, 2026 19:22
-
-
Save CostaFot/d0b2daeb367e84cca7f55701c41d9a13 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Window( | |
| // .... | |
| undecorated = true, // kills the OS title bar | |
| transparent = true, // makes the window background see-through | |
| resizable = false, | |
| alwaysOnTop = true, | |
| // .... | |
| ) { | |
| WindowDraggableArea { // since there's no title bar to drag, this wraps the content and handles it | |
| App() | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment