Skip to content

prof79/slint-center-win-crate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

slint-center-win 0.2.0

Center a Slint window running on a winit backend.

Usage

use slint_center_win::center_window;

slint::include_modules!();

fn main() -> Result<(), slint::PlatformError> {
    // See: https://slint.dev/releases/1.5.1/docs/rust/slint/docs/generated_code/struct.SampleComponent
    let ui = AppWindow::new()?;

    // Window must be shown first so sizes get calculated properly
    // Don't know if there is a better way, slight redraw artifacting on move
    ui.show()?;

    center_window(ui.window());

    // ...

    ui.run()
}

Releases

v0.2.0

Updated/streamlined for Slint v1.5.*.

v0.1.2

Initial release.

Disclaimer

Neither do I claim this to be pretty nor working in all cases.

Please see external discussions #4376 and #3859.

-- prof79

About

Center a Slint window running on a `winit` backend Rust crate.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages