base on Electron api we use win.show()
to show the hidden application windows.
const win = new BrowserWindow({show: false});
win.show();
But how can we detect is Electron application showing or hidden? Thanks.
base on Electron api we use win.show()
to show the hidden application windows.
const win = new BrowserWindow({show: false});
win.show();
But how can we detect is Electron application showing or hidden? Thanks.