Since WinRT was phased out and replaced with UWP, one issue I'm having is full screen support. In UWP applications by default, including the UWP Gideros export I'm running, have a header bar even in full screen. Is there an existing option I'm missing to override that behavior and use the entire screen? It seems like it should be straightforward according to Microsoft, adding coreTitleBar.ExtendViewIntoTitleBar = true; to the app's OnLaunched method:
https://docs.microsoft.com/en-us/windows/uwp/design/shell/title-barBut is something equivalent currently available via Gideros?
Thanks,
Paul
Comments
https://github.com/gideros/gideros/blob/master/libgid/src/winrt/platform-winrt.cpp#L107
It will work only if the app is focused though, that mean possibly not from main.lua if launched from the studio...
Likes: MoKaLux