# WindowSafeArea

`import { WindowSafeArea } from "destack:display/binding";`

Window safe-area insets in logical platform points.

```ds title="WindowSafeArea"
export struct WindowSafeArea {
    top: float64;
    right: float64;
    bottom: float64;
    left: float64;
}
```

[language/library/src/display/binding/window.ds:185:194](https://github.com/destack-sh/destack/blob/main/language/library/src/display/binding/window.ds#L185-L194)

## Members

### `top: float64`

Top inset.

### `right: float64`

Right inset.

### `bottom: float64`

Bottom inset.

### `left: float64`

Left inset.
