> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# layoutEvent$

> Observable that emits whenever the call layout changes.

```ts
get layoutEvent$(): Observable<LayoutChangedPayload>
```

## **Examples**

```ts
call.layoutEvent$.subscribe((layoutEvent) => {
  console.log('layoutEvent:', layoutEvent);
});
```