Window State
Save window positions and sizes and restore them when the app is reopened.
Supported Platforms
- Windows
- Linux
- macOS
Setup
This plugin requires a Rust version of at least 1.75
Install the window-state plugin to get started.
Use your project’s package manager to add the dependency:
-
Install the Core plugin by adding the following to your
Cargo.toml
file: -
Modify
lib.rs
to initialize the plugin: -
Install the JavaScript Guest bindings using your preferred JavaScript package manager:
Usage
After adding the all windows will remember their state when the app is being closed and will restore to their previous state on the next launch.
You can also access the window-state plugin in both JavaScript and Rust.
JavaScript
You can use saveWindowState
to manually save the window state:
Similarly you can manually restore a window’s state from disk:
Rust
You can use the save_window_state()
method exposed by the AppHandleExt
trait:
Similarly you can manually restore a window’s state from disk using the restore_state()
method exposed by the WindowExt
trait:
Permissions
By default all plugin commands are blocked and cannot be accessed.
You must define a list of permissions in your capabilities
configuration.
See Permissions Overview for more information.
Permission | Description |
---|---|
window-state:allow-restore-state | Enables the restore_state command without any pre-configured scope. |
window-state:deny-restore-state | Denies the restore_state command without any pre-configured scope. |
window-state:allow-save-window-state | Enables the save_window_state command without any pre-configured scope. |
window-state:deny-save-window-state | Denies the save_window_state command without any pre-configured scope. |
© 2024 Tauri Contributors. CC-BY / MIT