How to change the size of the BrowserWindow, not at startup, but on time work?
All the solutions that I found were about such:
var win = new BrowserWindow({ width: 800, height: 600, show: false });
Do you mean after the BrowserWindow is created you want to change its size dynamically. You can use setSize
win.setSize(width, height[, animate])
Refer docs
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With