跳转到内容

webviewWindow

此内容尚不支持你的语言。

Create and manipulate windows that host a single webview.

WebviewWindow is the type you want for ordinary multi-window apps: it mixes together the Window and Webview APIs, so one object exposes both the window methods (setTitle, maximize, close, …) and the webview ones (setZoom, clearAllBrowsingData, …).

import { WebviewWindow } from '@tauri-apps/api/webviewWindow';
const settings = new WebviewWindow('settings', {
url: '/settings',
title: 'Settings'
});
settings.once('tauri://created', () => console.log('window created'));
settings.once('tauri://error', (e) => console.error(e));

Unlike child webviews, this does not require the unstable Cargo feature.

This package is also accessible with window.__TAURI__.webviewWindow when app.withGlobalTauri in tauri.conf.json is set to true.

Creating a webview window requires the core:webview:allow-create-webview-window permission, which is not included in core:webview:default. The methods inherited from Window and Webview each document their own permission.

Sources: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L82, https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L85

Create new webview or get a handle to an existing one.

Webviews are identified by a label a unique identifier that can be used to reference it later. It may only contain alphanumeric characters a-zA-Z plus the following special characters -, /, : and _.

Creating a webview with new Webview(...) adds a child webview to an existing window, which is an unstable API gated behind the unstable feature of the tauri crate:

[dependencies]
tauri = { version = "2", features = ["unstable"] }

Without it the call rejects with an “unstable feature not supported” error. Getting a handle to an existing webview (Webview.getByLabel, getCurrentWebview, getAllWebviews) and every method on this class work without the feature. To create a window that hosts a single webview, use WebviewWindow instead, which is stable.

import { Window } from "@tauri-apps/api/window"
import { Webview } from "@tauri-apps/api/webview"
const appWindow = new Window('uniqueLabel');
appWindow.once('tauri://created', async function () {
// `new Webview` Should be called after the window is successfully created,
// or webview may not be attached to the window since window is not created yet.
// loading embedded asset:
const webview = new Webview(appWindow, 'theUniqueLabel', {
url: 'path/to/page.html',
// create a webview with specific logical position and size
x: 0,
y: 0,
width: 800,
height: 600,
});
// alternatively, load a remote URL:
const webview = new Webview(appWindow, 'theUniqueLabel', {
url: 'https://github.com/tauri-apps/tauri',
// create a webview with specific logical position and size
x: 0,
y: 0,
width: 800,
height: 600,
});
webview.once('tauri://created', function () {
// webview successfully created
});
webview.once('tauri://error', function (e) {
// an error happened creating the webview
});
// emit an event to the backend
await webview.emit("some-event", "data");
// listen to an event from the backend
const unlisten = await webview.listen("event-name", e => { });
unlisten();
});

2.0.0

new WebviewWindow(label, options?): WebviewWindow;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L115

Creates a new Window hosting a Webview.

Parameter Type Description
label string The unique webview label. Must be alphanumeric: a-zA-Z-/:_.
options Omit<WebviewOptions, "x" | "y" | "width" | "height"> & WindowOptions The window and webview configuration, see WindowOptions and WebviewOptions.

WebviewWindow

The WebviewWindow instance to communicate with the window and webview.

import { WebviewWindow } from '@tauri-apps/api/webviewWindow'
const webview = new WebviewWindow('my-label', {
url: 'https://github.com/tauri-apps/tauri'
});
webview.once('tauri://created', function () {
// webview successfully created
});
webview.once('tauri://error', function (e) {
// an error happened creating the webview
});

Requires the core:webview:allow-create-webview-window permission (not included in core:webview:default).

Webview.constructor

Property Type Description Inherited from Defined in
label string The webview label. It is a unique identifier for the webview, can be used to reference it later. Webview.label Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L86
listeners Record<string, EventCallback<any>[]> Local event listeners. Webview.listeners Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L89
window Window The window hosting this webview. Webview.window Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L211

activityName(): Promise<string>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L965

The name of the Android activity hosting this window.

On Android each window is backed by its own activity. Use this to tell windows apart from native code, or to match a window with the activity declared in your AndroidManifest.xml.

Platform-specific

  • Android: Supported.
  • Windows / Linux / macOS / iOS: Unsupported, the call rejects because the command is not registered.

See the mobile multiwindow guide.

Promise<string>

The activity name.

import { getCurrentWindow } from '@tauri-apps/api/window';
const activity = await getCurrentWindow().activityName();

Uses the core:window:allow-activity-name permission, which is part of core:window:default.

2.11.0

Window.activityName

center(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1020

Centers the window.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().center();

Requires the core:window:allow-center permission (not included in core:window:default).

Window.center

clearAllBrowsingData(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L699

Clears all browsing data for this webview: cookies, localStorage, IndexedDB, caches and any other data the webview stores for the loaded origins.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWebview } from '@tauri-apps/api/webview';
await getCurrentWebview().clearAllBrowsingData();

Requires the core:webview:allow-clear-all-browsing-data permission (not included in core:webview:default).

Webview.clearAllBrowsingData

clearEffects(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1512

Clear any applied effects if possible.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().clearEffects();

Requires the core:window:allow-set-effects permission (not included in core:window:default), the same one used by Window.setEffects.

2.0.0

Window.clearEffects

close(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L513

Closes the webview.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWebview } from '@tauri-apps/api/webview';
await getCurrentWebview().close();

Requires the core:webview:allow-webview-close permission (not included in core:webview:default).

Webview.close

destroy(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1396

Destroys the window. Behaves like Window.close but forces the window close instead of emitting a closeRequested event.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().destroy();

Requires the core:window:allow-destroy permission (not included in core:window:default).

Window.destroy

emit<T>(event, payload?): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L393

Emits an event to all targets.

Type Parameter
T
Parameter Type Description
event string Event name. Must include only alphanumeric characters, -, /, : and _.
payload? T Event payload.

Promise<void>

import { getCurrentWebview } from '@tauri-apps/api/webview';
await getCurrentWebview().emit('webview-loaded', { loggedIn: true, token: 'authToken' });

Webview.emit

emitTo<T>(
target,
event,
payload?
): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L421

Emits an event to all targets matching the given target.

Type Parameter
T
Parameter Type Description
target | string | EventTarget Label of the target Window/Webview/WebviewWindow or raw EventTarget object.
event string Event name. Must include only alphanumeric characters, -, /, : and _.
payload? T Event payload.

Promise<void>

import { getCurrentWebview } from '@tauri-apps/api/webview';
await getCurrentWebview().emitTo('main', 'webview-loaded', { loggedIn: true, token: 'authToken' });

Webview.emitTo

hide(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L618

Hide the webview.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWebview } from '@tauri-apps/api/webview';
await getCurrentWebview().hide();

Requires the core:webview:allow-webview-hide permission (not included in core:webview:default).

Webview.hide

innerPosition(): Promise<PhysicalPosition>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L651

The position of the top-left hand corner of the window’s client area relative to the top-left hand corner of the desktop.

Promise<PhysicalPosition>

The window’s inner position.

import { getCurrentWindow } from '@tauri-apps/api/window';
const position = await getCurrentWindow().innerPosition();

Window.innerPosition

innerSize(): Promise<PhysicalSize>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L684

The physical size of the window’s client area. The client area is the content of the window, excluding the title bar and borders.

Promise<PhysicalSize>

The window’s inner size.

import { getCurrentWindow } from '@tauri-apps/api/window';
const size = await getCurrentWindow().innerSize();

Window.innerSize

isAlwaysOnTop(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L931

Whether the window is configured to be always on top of other windows or not.

Promise<boolean>

Whether the window is visible or not.

import { getCurrentWindow } from '@tauri-apps/api/window';
const alwaysOnTop = await getCurrentWindow().isAlwaysOnTop();

Window.isAlwaysOnTop

isClosable(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L864

Gets the window’s native close button state.

Platform-specific

  • iOS / Android: Unsupported.

Promise<boolean>

Whether the window’s native close button is enabled or not.

import { getCurrentWindow } from '@tauri-apps/api/window';
const closable = await getCurrentWindow().isClosable();

Window.isClosable

isDecorated(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L785

Gets the window’s current decorated state.

Promise<boolean>

Whether the window is decorated or not.

import { getCurrentWindow } from '@tauri-apps/api/window';
const decorated = await getCurrentWindow().isDecorated();

Window.isDecorated

isEnabled(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1124

Whether the window is enabled or disabled.

A disabled window ignores all user input; see Window.setEnabled.

Promise<boolean>

true when the window accepts user input, false when it is disabled.

import { getCurrentWindow } from '@tauri-apps/api/window';
const enabled = await getCurrentWindow().isEnabled();

2.0.0

Window.isEnabled

isFocused(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L769

Gets the window’s current focus state.

Promise<boolean>

Whether the window is focused or not.

import { getCurrentWindow } from '@tauri-apps/api/window';
const focused = await getCurrentWindow().isFocused();

Window.isFocused

isFullscreen(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L723

Gets the window’s current fullscreen state.

Promise<boolean>

Whether the window is in fullscreen mode or not.

import { getCurrentWindow } from '@tauri-apps/api/window';
const fullscreen = await getCurrentWindow().isFullscreen();

Window.isFullscreen

isMaximizable(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L822

Gets the window’s native maximize button state.

Platform-specific

  • Linux / iOS / Android: Unsupported.

Promise<boolean>

Whether the window’s native maximize button is enabled or not.

import { getCurrentWindow } from '@tauri-apps/api/window';
const maximizable = await getCurrentWindow().isMaximizable();

Window.isMaximizable

isMaximized(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L753

Gets the window’s current maximized state.

Promise<boolean>

Whether the window is maximized or not.

import { getCurrentWindow } from '@tauri-apps/api/window';
const maximized = await getCurrentWindow().isMaximized();

Window.isMaximized

isMinimizable(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L843

Gets the window’s native minimize button state.

Platform-specific

  • Linux / iOS / Android: Unsupported.

Promise<boolean>

Whether the window’s native minimize button is enabled or not.

import { getCurrentWindow } from '@tauri-apps/api/window';
const minimizable = await getCurrentWindow().isMinimizable();

Window.isMinimizable

isMinimized(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L737

Gets the window’s current minimized state.

Promise<boolean>

import { getCurrentWindow } from '@tauri-apps/api/window';
const minimized = await getCurrentWindow().isMinimized();

Window.isMinimized

isResizable(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L801

Gets the window’s current resizable state.

Promise<boolean>

Whether the window is resizable or not.

import { getCurrentWindow } from '@tauri-apps/api/window';
const resizable = await getCurrentWindow().isResizable();

Window.isResizable

isVisible(): Promise<boolean>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L880

Gets the window’s current visible state.

Promise<boolean>

Whether the window is visible or not.

import { getCurrentWindow } from '@tauri-apps/api/window';
const visible = await getCurrentWindow().isVisible();

Window.isVisible

listen<T>(event, handler): Promise<UnlistenFn>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L199

Listen to an emitted event on this webview window.

Type Parameter
T
Parameter Type Description
event EventName Event name. Must include only alphanumeric characters, -, /, : and _.
handler EventCallback<T> Event handler.

Promise<UnlistenFn>

A promise resolving to a function to unlisten to the event.

import { WebviewWindow } from '@tauri-apps/api/webviewWindow';
const unlisten = await WebviewWindow.getCurrent().listen<string>('state-changed', (event) => {
console.log(`Got error: ${payload}`);
});
// call unlisten when your handler goes out of scope e.g. the component is unmounted
unlisten();

The listener is removed automatically when this webview window is destroyed, so you do not need to unlisten just because the window is closing. Do call the returned function when the listener’s own scope ends, e.g. on page navigation or when a component unmounts.

Webview.listen

maximize(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1242

Maximizes the window.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().maximize();

Requires the core:window:allow-maximize permission (not included in core:window:default).

Window.maximize

minimize(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1299

Minimizes the window.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().minimize();

Requires the core:window:allow-minimize permission (not included in core:window:default).

Window.minimize

once<T>(event, handler): Promise<UnlistenFn>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L237

Listen to an emitted event on this webview window only once.

Type Parameter
T
Parameter Type Description
event EventName Event name. Must include only alphanumeric characters, -, /, : and _.
handler EventCallback<T> Event handler.

Promise<UnlistenFn>

A promise resolving to a function to unlisten to the event.

import { WebviewWindow } from '@tauri-apps/api/webviewWindow';
const unlisten = await WebviewWindow.getCurrent().once<null>('initialized', (event) => {
console.log(`Webview initialized!`);
});
// call unlisten when your handler goes out of scope e.g. the component is unmounted
unlisten();

The listener removes itself after the first event and is also removed automatically when this webview window is destroyed. Do call the returned function if the listener’s own scope ends before the event arrives.

Webview.once

onCloseRequested(handler): Promise<UnlistenFn>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2365

Listen to window close requested. Emitted when the user requests to closes the window.

Parameter Type
handler (event) => | void | Promise<void>

Promise<UnlistenFn>

A promise resolving to a function to unlisten to the event.

import { getCurrentWindow } from "@tauri-apps/api/window";
// `confirm` comes from the dialog plugin, which you have to add separately:
// `pnpm tauri add dialog`
import { confirm } from '@tauri-apps/plugin-dialog';
const unlisten = await getCurrentWindow().onCloseRequested(async (event) => {
const confirmed = await confirm('Are you sure?');
if (!confirmed) {
// user did not confirm closing the window; let's prevent it
event.preventDefault();
}
});
// call unlisten when your handler goes out of scope e.g. the component is unmounted
unlisten();

The listener is removed automatically when this window is destroyed, so you do not need to unlisten just because the window is closing. Do call the returned function when the listener’s own scope ends, e.g. on page navigation or when a component unmounts.

Window.onCloseRequested

onDragDropEvent(handler): Promise<UnlistenFn>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L769

Listen to a file drop event. The listener is triggered when the user hovers the selected files on the webview, drops the files or cancels the operation.

Parameter Type
handler EventCallback<DragDropEvent>

Promise<UnlistenFn>

A promise resolving to a function to unlisten to the event.

import { getCurrentWebview } from "@tauri-apps/api/webview";
const unlisten = await getCurrentWebview().onDragDropEvent((event) => {
if (event.payload.type === 'over') {
console.log('User hovering', event.payload.position);
} else if (event.payload.type === 'drop') {
console.log('User dropped', event.payload.paths);
} else {
console.log('File drop cancelled');
}
});
// call unlisten when your handler goes out of scope e.g. the component is unmounted
unlisten();

When the debugger panel is open, the drop position of this event may be inaccurate due to a known limitation. To retrieve the correct drop position, please detach the debugger.

The listeners are removed automatically when this webview is destroyed. Do call the returned function when the listener’s own scope ends, e.g. on page navigation or when a component unmounts.

Webview.onDragDropEvent

onFocusChanged(handler): Promise<UnlistenFn>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2489

Listen to window focus change.

Parameter Type
handler EventCallback<boolean>

Promise<UnlistenFn>

A promise resolving to a function to unlisten to the event.

import { getCurrentWindow } from "@tauri-apps/api/window";
const unlisten = await getCurrentWindow().onFocusChanged(({ payload: focused }) => {
console.log('Focus changed, window is focused? ' + focused);
});
// call unlisten when your handler goes out of scope e.g. the component is unmounted
unlisten();

The listener is removed automatically when this window is destroyed, so you do not need to unlisten just because the window is closing. Do call the returned function when the listener’s own scope ends, e.g. on page navigation or when a component unmounts.

Window.onFocusChanged

onMoved(handler): Promise<UnlistenFn>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2330

Listen to window move.

Parameter Type
handler EventCallback<PhysicalPosition>

Promise<UnlistenFn>

A promise resolving to a function to unlisten to the event.

import { getCurrentWindow } from "@tauri-apps/api/window";
const unlisten = await getCurrentWindow().onMoved(({ payload: position }) => {
console.log('Window moved', position);
});
// call unlisten when your handler goes out of scope e.g. the component is unmounted
unlisten();

The listener is removed automatically when this window is destroyed, so you do not need to unlisten just because the window is closing. Do call the returned function when the listener’s own scope ends, e.g. on page navigation or when a component unmounts.

Window.onMoved

onResized(handler): Promise<UnlistenFn>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2302

Listen to window resize.

Parameter Type
handler EventCallback<PhysicalSize>

Promise<UnlistenFn>

A promise resolving to a function to unlisten to the event.

import { getCurrentWindow } from "@tauri-apps/api/window";
const unlisten = await getCurrentWindow().onResized(({ payload: size }) => {
console.log('Window resized', size);
});
// call unlisten when your handler goes out of scope e.g. the component is unmounted
unlisten();

The listener is removed automatically when this window is destroyed, so you do not need to unlisten just because the window is closing. Do call the returned function when the listener’s own scope ends, e.g. on page navigation or when a component unmounts.

Window.onResized

onScaleChanged(handler): Promise<UnlistenFn>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2533

Listen to window scale change. Emitted when the window’s scale factor has changed. The following user actions can cause DPI changes:

  • Changing the display’s resolution.
  • Changing the display’s scale factor (e.g. in Control Panel on Windows).
  • Moving the window to a display with a different scale factor.
Parameter Type
handler EventCallback<ScaleFactorChanged>

Promise<UnlistenFn>

A promise resolving to a function to unlisten to the event.

import { getCurrentWindow } from "@tauri-apps/api/window";
const unlisten = await getCurrentWindow().onScaleChanged(({ payload }) => {
console.log('Scale changed', payload.scaleFactor, payload.size);
});
// call unlisten when your handler goes out of scope e.g. the component is unmounted
unlisten();

The listener is removed automatically when this window is destroyed, so you do not need to unlisten just because the window is closing. Do call the returned function when the listener’s own scope ends, e.g. on page navigation or when a component unmounts.

Window.onScaleChanged

onThemeChanged(handler): Promise<UnlistenFn>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2563

Listen to the system theme change.

Parameter Type
handler EventCallback<Theme>

Promise<UnlistenFn>

A promise resolving to a function to unlisten to the event.

import { getCurrentWindow } from "@tauri-apps/api/window";
const unlisten = await getCurrentWindow().onThemeChanged(({ payload: theme }) => {
console.log('New theme: ' + theme);
});
// call unlisten when your handler goes out of scope e.g. the component is unmounted
unlisten();

The listener is removed automatically when this window is destroyed, so you do not need to unlisten just because the window is closing. Do call the returned function when the listener’s own scope ends, e.g. on page navigation or when a component unmounts.

Window.onThemeChanged

outerPosition(): Promise<PhysicalPosition>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L667

The position of the top-left hand corner of the window relative to the top-left hand corner of the desktop.

Promise<PhysicalPosition>

The window’s outer position.

import { getCurrentWindow } from '@tauri-apps/api/window';
const position = await getCurrentWindow().outerPosition();

Window.outerPosition

outerSize(): Promise<PhysicalSize>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L704

The physical size of the entire window. These dimensions include the title bar and borders. If you don’t want that (and you usually don’t), use inner_size instead.

Promise<PhysicalSize>

The window’s outer size.

import { getCurrentWindow } from '@tauri-apps/api/window';
const size = await getCurrentWindow().outerSize();

Window.outerSize

position(): Promise<PhysicalPosition>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L469

The position of the top-left hand corner of the webview’s client area relative to the top-left hand corner of the desktop.

Promise<PhysicalPosition>

The webview’s position, in physical pixels.

import { getCurrentWebview } from '@tauri-apps/api/webview';
const position = await getCurrentWebview().position();

Uses the core:webview:allow-webview-position permission, which is part of core:webview:default.

Webview.position

reparent(window): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L678

Moves this webview to the window with the given label.

Parameter Type Description
window | string | Window | WebviewWindow The target window, or its label.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWebview } from '@tauri-apps/api/webview';
await getCurrentWebview().reparent('other-window');

Requires the core:webview:allow-reparent permission (not included in core:webview:default).

Webview.reparent

requestUserAttention(requestType): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1049

Requests user attention to the window, this has no effect if the application is already focused. How requesting for user attention manifests is platform dependent, see UserAttentionType for details.

Providing null will unset the request for user attention. Unsetting the request for user attention might not be done automatically by the WM when the window receives input.

Platform-specific

  • macOS: null has no effect.
  • Linux: Urgency levels have the same effect.
Parameter Type
requestType | UserAttentionType | null

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().requestUserAttention();

Requires the core:window:allow-request-user-attention permission (not included in core:window:default).

Window.requestUserAttention

scaleFactor(): Promise<number>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L635

The scale factor that can be used to map physical pixels to logical pixels.

Promise<number>

The window’s monitor scale factor.

import { getCurrentWindow } from '@tauri-apps/api/window';
const factor = await getCurrentWindow().scaleFactor();

Window.scaleFactor

sceneIdentifier(): Promise<string>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L999

The identifier of the iOS scene hosting this window.

On iOS each window is backed by a UIScene. Use this to tell windows apart from native code, or to match a window with a scene configuration declared in your Info.plist.

Platform-specific

  • iOS: Supported.
  • Windows / Linux / macOS / Android: Unsupported, the call rejects because the command is not registered.

See the mobile multiwindow guide.

Promise<string>

The scene identifier.

import { getCurrentWindow } from '@tauri-apps/api/window';
const scene = await getCurrentWindow().sceneIdentifier();

Uses the core:window:allow-scene-identifier permission, which is part of core:window:default.

2.11.0

Window.sceneIdentifier

setAlwaysOnBottom(alwaysOnBottom): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1554

Whether the window should always be below other windows.

Parameter Type Description
alwaysOnBottom boolean Whether the window should always be below other windows or not.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setAlwaysOnBottom(true);

Requires the core:window:allow-set-always-on-bottom permission (not included in core:window:default).

Window.setAlwaysOnBottom

setAlwaysOnTop(alwaysOnTop): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1533

Whether the window should always be on top of other windows.

Parameter Type Description
alwaysOnTop boolean Whether the window should always be on top of other windows or not.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setAlwaysOnTop(true);

Requires the core:window:allow-set-always-on-top permission (not included in core:window:default).

Window.setAlwaysOnTop

setAutoResize(autoResize): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L598

Sets whether the webview should automatically grow and shrink its size and position when the parent window resizes.

Parameter Type
autoResize boolean

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWebview } from '@tauri-apps/api/webview';
await getCurrentWebview().setAutoResize(true);

Requires the core:webview:allow-set-webview-auto-resize permission (not included in core:webview:default).

Webview.setAutoResize

setBackgroundColor(color): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L280

Set the window and webview background color.

Platform-specific:

  • Android / iOS: Unsupported for the window layer.
  • macOS / iOS: Not implemented for the webview layer.
  • Windows:
    • alpha channel is ignored for the window layer.
    • On Windows 7, alpha channel is ignored for the webview layer.
    • On Windows 8 and newer, if alpha channel is not 0, it will be ignored.
Parameter Type Description
color Color The new background color.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWebviewWindow } from '@tauri-apps/api/webviewWindow';
await getCurrentWebviewWindow().setBackgroundColor('#2f2f2f');

Requires both the core:window:allow-set-background-color and core:webview:allow-set-webview-background-color permissions, neither of which is included in the respective default permission set.

2.1.0

Webview.setBackgroundColor

setBadgeCount(count?): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2095

Sets the badge count. It is app wide and not specific to this window.

Platform-specific

Parameter Type Description
count? number The badge count. Use undefined to remove the badge.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setBadgeCount(5);

Requires the core:window:allow-set-badge-count permission (not included in core:window:default).

Window.setBadgeCount

setBadgeLabel(label?): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2120

Sets the badge label shown on the app’s dock icon. macOS only

Unlike Window.setBadgeCount, which takes a number, this shows arbitrary short text. It is app-wide and not specific to this window.

Parameter Type Description
label? string The badge label. Use undefined to remove the badge.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setBadgeLabel("Hello");

Requires the core:window:allow-set-badge-label permission (not included in core:window:default).

Window.setBadgeLabel

setClosable(closable): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1201

Sets whether the window’s native close button is enabled or not.

Platform-specific

  • Linux: GTK+ will do its best to convince the window manager not to show a close button. Depending on the system, this function may not have any effect when called on a window that is already visible
  • iOS / Android: Unsupported.
Parameter Type
closable boolean

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setClosable(false);

Requires the core:window:allow-set-closable permission (not included in core:window:default).

Window.setClosable

setContentProtected(protected_): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1574

Prevents the window contents from being captured by other apps.

Parameter Type
protected_ boolean

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setContentProtected(true);

Requires the core:window:allow-set-content-protected permission (not included in core:window:default).

Window.setContentProtected

setCursorGrab(grab): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1902

Grabs the cursor, preventing it from leaving the window.

There’s no guarantee that the cursor will be hidden. You should hide it by yourself if you want so.

Platform-specific

  • Linux: Unsupported.
  • macOS: This locks the cursor in a fixed location, which looks visually awkward.
Parameter Type Description
grab boolean true to grab the cursor icon, false to release it.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setCursorGrab(true);

Requires the core:window:allow-set-cursor-grab permission (not included in core:window:default).

Window.setCursorGrab

setCursorIcon(icon): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1950

Modifies the cursor icon of the window.

Parameter Type Description
icon CursorIcon The new cursor icon.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setCursorIcon('help');

Requires the core:window:allow-set-cursor-icon permission (not included in core:window:default).

Window.setCursorIcon

setCursorPosition(position): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2006

Changes the position of the cursor in window coordinates.

Parameter Type Description
position | PhysicalPosition | LogicalPosition | Position The new cursor position.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow, LogicalPosition } from '@tauri-apps/api/window';
await getCurrentWindow().setCursorPosition(new LogicalPosition(600, 300));

Requires the core:window:allow-set-cursor-position permission (not included in core:window:default).

Window.setCursorPosition

setCursorVisible(visible): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1929

Modifies the cursor’s visibility.

Platform-specific

  • Windows: The cursor is only hidden within the confines of the window.
  • macOS: The cursor is hidden as long as the window has input focus, even if the cursor is outside of the window.
Parameter Type Description
visible boolean If false, this will hide the cursor. If true, this will show the cursor.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setCursorVisible(false);

Requires the core:window:allow-set-cursor-visible permission (not included in core:window:default).

Window.setCursorVisible

setDecorations(decorations): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1416

Whether the window should have borders and bars.

Parameter Type Description
decorations boolean Whether the window should have borders and bars.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setDecorations(false);

Requires the core:window:allow-set-decorations permission (not included in core:window:default).

Window.setDecorations

setEffects(effects): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1489

Applies platform-specific window effects such as Mica, Acrylic, Blur or the macOS vibrancy materials.

Requires the window to be transparent, so create it with transparent: true (or set transparent in tauri.conf.json). Give the page a transparent or translucent background as well, otherwise the effect is hidden behind your own background color.

Conflicting effects are resolved by applying the first supported one and ignoring the rest, so you can list a Windows and a macOS effect together.

Platform-specific

  • Windows: If the window uses decorations or shadows, you may need this workaround.
  • Linux: Unsupported.
Parameter Type Description
effects Effects The effects to apply, see Effects.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow, Effect, EffectState } from '@tauri-apps/api/window';
await getCurrentWindow().setEffects({
effects: [Effect.Mica, Effect.Acrylic, Effect.UnderWindowBackground],
state: EffectState.Active,
radius: 8
});

Requires the core:window:allow-set-effects permission (not included in core:window:default).

2.0.0

Window.setEffects

setEnabled(enabled): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1102

Enable or disable the window.

Parameter Type
enabled boolean

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setEnabled(false);

Requires the core:window:allow-set-enabled permission (not included in core:window:default).

2.0.0

Window.setEnabled

setFocus(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L579

Bring the webview to front and focus.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWebview } from '@tauri-apps/api/webview';
await getCurrentWebview().setFocus();

Requires the core:webview:allow-set-webview-focus permission (not included in core:webview:default).

Webview.setFocus

setFocusable(focusable): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1820

Sets whether the window can be focused.

Platform-specific

  • macOS: If the window is already focused, it is not possible to unfocus it after calling set_focusable(false). In this case, you might consider calling Window.setFocus but it will move the window to the back i.e. at the bottom in terms of z-order.
Parameter Type Description
focusable boolean Whether the window can be focused.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setFocusable(true);

Requires the core:window:allow-set-focusable permission (not included in core:window:default).

Window.setFocusable

setFullscreen(fullscreen): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1719

Sets the window fullscreen state.

Parameter Type Description
fullscreen boolean Whether the window should go to fullscreen or not.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setFullscreen(true);

Requires the core:window:allow-set-fullscreen permission (not included in core:window:default).

Window.setFullscreen

setFullscreenOnMonitor(position): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1747

Sets the window as fullscreen on the monitor that contains the given physical position.

Does nothing if no monitor contains the position.

Parameter Type Description
position PhysicalPosition A physical position inside the target monitor, such as Monitor.position.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow, availableMonitors } from '@tauri-apps/api/window';
const monitors = await availableMonitors();
if (monitors.length > 1) {
await getCurrentWindow().setFullscreenOnMonitor(monitors[1].position);
}

Requires the core:window:allow-set-fullscreen-on-monitor permission (not included in core:window:default).

2.12.0

Window.setFullscreenOnMonitor

setIcon(icon): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1848

Sets the window icon.

Parameter Type Description
icon JsImage Icon bytes or path to the icon file.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setIcon('/tauri/awesome.png');

Note that you may need the image-ico or image-png Cargo features to use this API. To enable it, change your Cargo.toml file:

[dependencies]
tauri = { version = "...", features = ["...", "image-png"] }

Requires the core:window:allow-set-icon permission (not included in core:window:default).

Window.setIcon

setIgnoreCursorEvents(ignore): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2030

Changes the cursor events behavior.

Parameter Type Description
ignore boolean true to ignore the cursor events; false to process them as usual.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setIgnoreCursorEvents(true);

Requires the core:window:allow-set-ignore-cursor-events permission (not included in core:window:default).

Window.setIgnoreCursorEvents

setMaximizable(maximizable): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1150

Sets whether the window’s native maximize button is enabled or not. If resizable is set to false, this setting is ignored.

Platform-specific

  • macOS: Disables the “zoom” button in the window titlebar, which is also used to enter fullscreen mode.
  • Linux / iOS / Android: Unsupported.
Parameter Type
maximizable boolean

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setMaximizable(false);

Requires the core:window:allow-set-maximizable permission (not included in core:window:default).

Window.setMaximizable

setMaxSize(size): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1639

Sets the window maximum inner size. If the size argument is undefined, the constraint is unset.

Parameter Type Description
size | PhysicalSize | LogicalSize | Size | null | undefined The logical or physical inner size, or null to unset the constraint.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow, LogicalSize } from '@tauri-apps/api/window';
await getCurrentWindow().setMaxSize(new LogicalSize(600, 500));

Requires the core:window:allow-set-max-size permission (not included in core:window:default).

Window.setMaxSize

setMinimizable(minimizable): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1175

Sets whether the window’s native minimize button is enabled or not.

Platform-specific

  • Linux / iOS / Android: Unsupported.
Parameter Type
minimizable boolean

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setMinimizable(false);

Requires the core:window:allow-set-minimizable permission (not included in core:window:default).

Window.setMinimizable

setMinSize(size): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1616

Sets the window minimum inner size. If the size argument is not provided, the constraint is unset.

Parameter Type Description
size | PhysicalSize | LogicalSize | Size | null | undefined The logical or physical inner size, or null to unset the constraint.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow, PhysicalSize } from '@tauri-apps/api/window';
await getCurrentWindow().setMinSize(new PhysicalSize(600, 500));

Requires the core:window:allow-set-min-size permission (not included in core:window:default).

Window.setMinSize

setOverlayIcon(icon?): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2152

Sets the overlay icon. Windows only The overlay icon can be set for every window.

Note that you may need the image-ico or image-png Cargo features to use this API. To enable it, change your Cargo.toml file:

[dependencies]
tauri = { version = "...", features = ["...", "image-png"] }
Parameter Type Description
icon? JsImage Icon bytes or path to the icon file. Use undefined to remove the overlay icon.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setOverlayIcon("/tauri/awesome.png");

Requires the core:window:allow-set-overlay-icon permission (not included in core:window:default).

Window.setOverlayIcon

setPosition(position): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L557

Sets the webview position.

Parameter Type Description
position | PhysicalPosition | LogicalPosition | Position The new position, in logical or physical pixels, relative to the top-left corner of the hosting window.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWebview } from '@tauri-apps/api/webview';
import { LogicalPosition } from '@tauri-apps/api/dpi';
await getCurrentWebview().setPosition(new LogicalPosition(600, 500));

Requires the core:webview:allow-set-webview-position permission (not included in core:webview:default).

Webview.setPosition

setProgressBar(state): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2181

Sets the taskbar progress state.

Platform-specific

  • Linux / macOS: Progress bar is app-wide and not specific to this window.
  • Linux: Only supported desktop environments with libunity (e.g. GNOME).
Parameter Type
state ProgressBarState

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow, ProgressBarStatus } from '@tauri-apps/api/window';
await getCurrentWindow().setProgressBar({
status: ProgressBarStatus.Normal,
progress: 50,
});

Requires the core:window:allow-set-progress-bar permission (not included in core:window:default).

Window.setProgressBar

setResizable(resizable): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1080

Updates the window resizable flag.

Parameter Type
resizable boolean

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setResizable(false);

Requires the core:window:allow-set-resizable permission (not included in core:window:default).

Window.setResizable

setShadow(enable): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1445

Whether or not the window should have shadow.

Platform-specific

  • Windows:
    • false has no effect on decorated window, shadows are always ON.
    • true will make undecorated window have a 1px white border, and on Windows 11, it will have a rounded corners.
  • Linux: Unsupported.
Parameter Type
enable boolean

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setShadow(false);

Requires the core:window:allow-set-shadow permission (not included in core:window:default).

Window.setShadow

setSimpleFullscreen(fullscreen): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1774

On macOS, Toggles a fullscreen mode that doesn’t require a new macOS space. Returns a boolean indicating whether the transition was successful (this won’t work if the window was already in the native fullscreen). This is how fullscreen used to work on macOS in versions before Lion. And allows the user to have a fullscreen window without using another space or taking control over the entire monitor.

On other platforms, this is the same as Window.setFullscreen.

Parameter Type Description
fullscreen boolean Whether the window should go to simple fullscreen or not.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setSimpleFullscreen(true);

Requires the core:window:allow-set-simple-fullscreen permission (not included in core:window:default).

2.8.0

Window.setSimpleFullscreen

setSize(size): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L534

Resizes the webview.

Parameter Type Description
size | PhysicalSize | LogicalSize | Size The logical or physical size.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWebview } from '@tauri-apps/api/webview';
import { LogicalSize } from '@tauri-apps/api/dpi';
await getCurrentWebview().setSize(new LogicalSize(600, 500));

Requires the core:webview:allow-set-webview-size permission (not included in core:webview:default).

Webview.setSize

setSizeConstraints(constraints): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1664

Sets the window inner size constraints.

Parameter Type Description
constraints | WindowSizeConstraints | null | undefined The inner size constraints in logical pixels, or null to unset every constraint. Each field is optional and independent, so { minWidth: 300 } constrains only the width.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setSizeConstraints({ minWidth: 300 });

Requires the core:window:allow-set-size-constraints permission (not included in core:window:default).

Window.setSizeConstraints

setSkipTaskbar(skip): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1873

Whether the window icon should be hidden from the taskbar or not.

Platform-specific

  • macOS: Unsupported.
Parameter Type Description
skip boolean true to hide window icon, false to show it.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setSkipTaskbar(true);

Requires the core:window:allow-set-skip-taskbar permission (not included in core:window:default).

Window.setSkipTaskbar

setTheme(theme?): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2272

Set window theme, pass in null or undefined to follow system theme

Platform-specific

  • Linux / macOS: Theme is app-wide and not specific to this window.
  • iOS / Android: Unsupported.

Use Window.theme to read the effective theme and Window.onThemeChanged to react to changes.

Parameter Type Description
theme? Theme | null The theme to apply, or null/undefined to follow the system theme.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setTheme('dark');
// follow the system theme again
await getCurrentWindow().setTheme(null);

Requires the core:window:allow-set-theme permission (not included in core:window:default).

2.0.0

Window.setTheme

setTitle(title): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1222

Sets the window title.

Parameter Type Description
title string The new title

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setTitle('Tauri');

Requires the core:window:allow-set-title permission (not included in core:window:default).

Window.setTitle

setTitleBarStyle(style): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2238

Sets the title bar style. macOS only.

Use transparent or overlay to build a custom title bar: with overlay the page extends under the title bar and only the traffic lights remain, so leave room for them in your layout and pair it with Window.startDragging on a draggable region.

Parameter Type Description
style TitleBarStyle The new title bar style, see TitleBarStyle.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setTitleBarStyle('overlay');

Requires the core:window:allow-set-title-bar-style permission (not included in core:window:default).

2.0.0

Window.setTitleBarStyle

setVisibleOnAllWorkspaces(visible): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2209

Sets whether the window should be visible on all workspaces or virtual desktops.

Platform-specific

  • Windows / iOS / Android: Unsupported.
Parameter Type Description
visible boolean Whether the window should follow the user across workspaces.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().setVisibleOnAllWorkspaces(true);

Requires the core:window:allow-set-visible-on-all-workspaces permission (not included in core:window:default).

2.0.0

Window.setVisibleOnAllWorkspaces

setZoom(scaleFactor): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L657

Set webview zoom level.

Parameter Type Description
scaleFactor number The zoom level, where 1 is 100%.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWebview } from '@tauri-apps/api/webview';
await getCurrentWebview().setZoom(1.5);

Requires the core:webview:allow-set-webview-zoom permission (not included in core:webview:default).

Webview.setZoom

show(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L637

Show the webview.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWebview } from '@tauri-apps/api/webview';
await getCurrentWebview().show();

Requires the core:webview:allow-webview-show permission (not included in core:webview:default).

Webview.show

size(): Promise<PhysicalSize>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webview.ts#L489

The physical size of the webview’s client area. The client area is the content of the webview, excluding the title bar and borders.

Promise<PhysicalSize>

The webview’s size, in physical pixels.

import { getCurrentWebview } from '@tauri-apps/api/webview';
const size = await getCurrentWebview().size();

Uses the core:webview:allow-webview-size permission, which is part of core:webview:default.

Webview.size

startDragging(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2050

Starts dragging the window.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().startDragging();

Requires the core:window:allow-start-dragging permission (not included in core:window:default).

Window.startDragging

startResizeDragging(direction): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L2069

Starts resize-dragging the window.

Parameter Type
direction ResizeDirection

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().startResizeDragging();

Requires the core:window:allow-start-resize-dragging permission (not included in core:window:default).

Window.startResizeDragging

theme(): Promise<Theme | null>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L915

Gets the window’s current theme.

Platform-specific

  • macOS: Theme was introduced on macOS 10.14. Returns light on macOS 10.13 and below.

Promise<Theme | null>

The window theme.

import { getCurrentWindow } from '@tauri-apps/api/window';
const theme = await getCurrentWindow().theme();

Window.theme

title(): Promise<string>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L894

Gets the window’s current title.

Promise<string>

import { getCurrentWindow } from '@tauri-apps/api/window';
const title = await getCurrentWindow().title();

Window.title

toggleMaximize(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1280

Toggles the window maximized state.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().toggleMaximize();

Requires the core:window:allow-toggle-maximize permission (not included in core:window:default).

Window.toggleMaximize

unmaximize(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1261

Unmaximizes the window.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().unmaximize();

Requires the core:window:allow-unmaximize permission (not included in core:window:default).

Window.unmaximize

unminimize(): Promise<void>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/window.ts#L1318

Unminimizes the window.

Promise<void>

A promise indicating the success or failure of the operation.

import { getCurrentWindow } from '@tauri-apps/api/window';
await getCurrentWindow().unminimize();

Requires the core:window:allow-unminimize permission (not included in core:window:default).

Window.unminimize

static getAll(): Promise<WebviewWindow[]>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L172

Gets a list of instances of Webview for all available webviews.

Promise<WebviewWindow[]>

Webview.getAll

static getByLabel(label): Promise<
| WebviewWindow
| null>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L152

Gets the Webview for the webview associated with the given label.

Parameter Type Description
label string The webview label.

Promise< | WebviewWindow | null>

The Webview instance to communicate with the webview or null if the webview doesn’t exist.

import { WebviewWindow } from '@tauri-apps/api/webviewWindow';
const mainWebview = WebviewWindow.getByLabel('main');

Webview.getByLabel

static getCurrent(): WebviewWindow;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L165

Get an instance of Webview for the current webview.

WebviewWindow

Webview.getCurrent

function getAllWebviewWindows(): Promise<WebviewWindow[]>;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L69

Gets a list of instances of Webview for all available webview windows.

Promise<WebviewWindow[]>

Uses the core:window:allow-get-all-windows permission, which is part of core:window:default.

2.0.0


function getCurrentWebviewWindow(): WebviewWindow;

Source: https://github.com/tauri-apps/tauri/blob/dev/packages/api/src/webviewWindow.ts#L55

Get an instance of Webview for the current webview window.

WebviewWindow

2.0.0

Re-exports Color


Re-exports DragDropEvent


© 2026 Tauri Contributors. CC-BY / MIT