How to set window to maximum desktop width and height? #3518
Answered
by
xuchaoqian
kishaningithub
asked this question in
Q&A
-
I am using mac osx i would like to know to set the app window to max screen width and height via config? "windows": [
{
"title": "Taurdi",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false
} The Removing the width and height attributes makes it to a default width and height (which i think is 800 * 600) |
Beta Was this translation helpful? Give feedback.
Answered by
xuchaoqian
Feb 20, 2022
Replies: 1 comment
-
Try the following config: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kishaningithub
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try the following config:
"windows": [
{
"title": "Taurdi",
"width": 800,
"height": 600,
"resizable": true,
"maximized": true
}