I found a little thing that surprised me:
FullscreenMode6-21-2025_18-56-27.html (2.2 MB)
Basically, I found a way to fullscreen Wick projects, it works by using the requestFullscreen API on a really weird thing:
Wick’s project is segmented in Module-like classes, one of them being Wick.View
It has two modes: Wick.View.Clip (simpler API for Clip-only access) and Wick.View.Project. (better, but harder?)
Wick.View.Project has a canvasContainer getter, which gives access to the container <DIV/>. With the HTML element, I can run requestFullscreen() to fullscreen it!
The code (the last lines were too JS savvy for the animators in here, so CTRL + C & CTRL + V this):
project.project.view.canvasContainer.requestFullscreen();