Modifying the Window
When creating an Application
the properties of the window can be changed using window modifiers. These modifiers are methods called on the application prior to calling run()
.
For example, the title()
and inner_size()
window modifiers can be used to set the title and size of the window respectively.
use vizia::prelude::*;
fn main() {
Application::new(|cx|{
})
.title("Counter")
.inner_size((400, 150))
.run();
}