Is there any workaround to customize `WindowInsets`' values on desktop?
They seem to be hardcoded within Compose desktop, and are unfortunately not controllable through a composition local.
Tried some stuff with reflection but failed (and since Compose hard-codes the values, it also doesn't expect them to change, so I have to set it up very early)
I have 2 use-cases for this:
1. Testing insets without needing to resort to running the mobile version and spinning up the emulator etc...
2. My window is undecorated, and I have a custom window shell around the app's contents, and I'd love to be able to make my custom title bar act like a status bar (and allow drawing underneath it etc...) without having to change the logic of the common code, and insets are the best way this could be handled.