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

# localScreenVideo()

> Returns whether the local screen share video track is on.

`localScreenVideo()`

<Badge color="green">{"✓"} Prebuilt</Badge> <Badge color="green">{"✓"} Custom</Badge>

Returns whether the local screen share video track is on. Returns `false` when the screen video track state is `'off'` or `'blocked'`, `true` otherwise, and `null` if not in a call.

## Return value

Returns `boolean | null`.

## Example

```javascript theme={null}
if (call.localScreenVideo()) {
  console.log('Screen is being shared');
}
```

## See also

<CardGroup>
  <Card title="Types" icon="t" iconType="solid">
    * [DailyTrackState](/reference/daily-js/types/daily-track-state)
  </Card>

  <Card title="Methods" icon="code" iconType="solid">
    * [localScreenAudio()](/reference/daily-js/instance-methods/local-screen-audio)
    * [startScreenShare()](/reference/daily-js/instance-methods/start-screen-share)
    * [updateScreenShare()](/reference/daily-js/instance-methods/update-screen-share)
    * [stopScreenShare()](/reference/daily-js/instance-methods/stop-screen-share)
  </Card>

  <Card title="Events" icon="bolt" iconType="solid">
    * [participant-updated](/reference/daily-js/events/participant-events#participant-updated)
  </Card>
</CardGroup>
