13 lines
No EOL
275 B
Rust
13 lines
No EOL
275 B
Rust
use anyhow::ensure;
|
|
use tauri_sys::window;
|
|
|
|
pub async fn create_window() -> anyhow::Result<()> {
|
|
let win = window::WebviewWindow::new("foo", ());
|
|
|
|
ensure!(win.is_visible().await);
|
|
// ensure!(win.label() == "foo".to_string());
|
|
|
|
win.close().await;
|
|
|
|
Ok(())
|
|
} |