I want to draw behind the window title bar but I d...
# compose-desktop
m
I want to draw behind the window title bar but I don’t want to worry about having to recreate the window decorations (shape and buttons). Any solution?
🙌 1
k
Can't have both, at least not without diving into native platform specific API bindings
m
I get it, for now I give it low priority but sooner or later I’ll see how to do it. Thank you I was digging into aurora source code and I found your issue about undecorated window performance https://github.com/kirill-grouchnikov/aurora/issues/17
t
On macOS it is pretty easy, you just need to add a few lines to your Window block. See: https://github.com/JetBrains/compose-jb/issues/877#issuecomment-999046503 However, I have not looked into other platforms yet, so they could be a bit more difficult.
❤️ 1
🙌 1
m
Thank you so much!