Run full screen in a browser
Bevy version: 0.17Last updated:
Before 0.13 this required modifying the window dynamically and setting fit_canvas_to_parent on the Window.
However this has been removed in favor of CSS properties on the DOM:
canvas {
width: 100%;
height: 100%;
}