Answers for "electron no title bar"

CSS
0

electron draggable

button {
  -webkit-app-region: no-drag;
}
Posted by: Guest on August-02-2020
1

no frame electron

const mainWindow = new BrowserWindow({
  width: 1600,
  height: 900,
  frame: false,
});
Posted by: Guest on January-09-2021
0

electron custom title bar

-webkit-app-region: drag;
Posted by: Guest on August-24-2021

Browse Popular Code Answers by Language