> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omni.co/llms.txt
> Use this file to discover all available pages before exploring further.

# fullscreen:changed embed event

> Emitted by Omni when the fullscreen state of an embedded dashboard or app changes.

Omni emits this event whenever fullscreen mode is entered or exited through any mechanism: the menu item, keyboard shortcut, native `Esc` key exit, or unmount while fullscreen.

This event is emitted for both dashboards and apps. It does not fire on initial mount.

## Payload

```json theme={null}
{
  "name": "fullscreen:changed",
  "payload": {
    "isFullScreen": true
  }
}
```

## Properties

<ParamField path="isFullScreen" type="boolean">
  Indicates whether the embedded content is currently in fullscreen mode.

  * `true` - Fullscreen mode is active
  * `false` - Fullscreen mode is not active
</ParamField>

## Example

```json theme={null}
{
  "name": "fullscreen:changed",
  "payload": {
    "isFullScreen": true
  }
}
```
