Electron: How to minimize a window from a rendered process
问题 Scenario I have a window and it has an add task button that is opening a window. Everytime user clicks on it, it opens a window. I have a button on add task window that minimize it. How to implement this minimize button? Code I am able to close maximize window by using the code below: var winclose = function () { window.close(); } var winmaximize = function () { window.moveTo(0, 0); window.resizeTo(screen.width, screen.height); } However, I am not able to find any function that can minimize a