8000 Docs for Screen facade by SRWieZ · Pull Request #45 · NativePHP/nativephp.com · GitHub
[go: up one dir, main page]

Skip to content

Docs for Screen facade #45

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Sep 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update resources/views/docs/1/the-basics/screens.md
Co-authored-by: Simon Hamp <simon.hamp@me.com>
  • Loading branch information
SRWieZ and simonhamp authored Sep 14, 2024
commit b37609f484abf56a8ee8e45abdca91bb872f8fb1
2 changes: 1 addition & 1 deletion resources/views/docs/1/the-basics/screens.md
6C72
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $screens = Screen::displays();

The screen bounds are the desktop area that the screen covers. The `x` and `y` values are the top-left corner of the screen relative to the primary display, and the `width` and `height` values are the width and height of the screen.

Example to found out in what screen the window is located:
You can use this to find out which screen a particular window is located on:

```php
function getCurrentScreen()
Expand Down
0