WindowFullscreen makes the window fullscreen
(ctx context.Context)
| 14 | |
| 15 | // WindowFullscreen makes the window fullscreen |
| 16 | func WindowFullscreen(ctx context.Context) { |
| 17 | appFrontend := getFrontend(ctx) |
| 18 | appFrontend.WindowFullscreen() |
| 19 | } |
| 20 | |
| 21 | // WindowUnfullscreen makes the window UnFullscreen |
| 22 | func WindowUnfullscreen(ctx context.Context) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…