I want to create an offline app with web UI. I came to know about eel which is much simple than the Electron where I had to bring this node.js into the play.
But once I create a exe file with PyInstaller the issue for me is that, some users who install the app won't have chrome and eel will open it in edge. But my UI looks worse in edge.
So my question is how can I embed chromium in my exe. so that if the user doesn't have chrome installed it opens up in chrome itself like how electron does the job by having its own chromium included.
Any method is acceptable as I dont care for the size of the exe. Also is there someway that I can make the eel window non resizable, ie always have a fixed width and height only without the option of user to drag and resize or maximise the window ?