PySimpleGUI
PySimpleGUI
I [still] haven't implemented this yet, but think it would be good to do because I made a Sudoku game board that works on the other 3 ports very nicely...
 OMG Davide!!! I got it to work by modifying your little class..... ```python class CLASSframe( remi.gui.VBox ): def __init__(self, title, *args, **kwargs): super( CLASSframe, self ).__init__(*args, **kwargs) self.style.update({"overflow":"visible","border-width":"1px","border-style":"solid","border-color":"#7d7d7d"}) self.frame_label...
Wait, is your entire GUI in the single file app.py?? It's under 200 lines of code! And makes this GUI? Wow... that's really impressive. 
The error pretty much tells you what's happening. I'm not sure where the original code came from that you're using as examples, but it's VERY old design patterns that were...

Totally understand the difficulties of working with tkinter to get just the right look. It's not easy with any of them to be honest. I'll give it a try with...
I'm familiar with the way the tkinter timers work 🙂 and the difficulty of working in an event driven environment. PySimpleGUI, the tkinter version, is a tkinter program basically so...
OK, I think I've got the hang of how to do the kind of layout you've got going. Just have to fill in the bits. 
Lemme clean stuff up a little and drop in a couple of blocks of info. It's about 40 lines of code at the moment with about 1/2 of it being...
OK, I've posted my code so far here: https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Dashboard.py You'll need to download the PySimpleGUI.py file from the GitHub as I added a new Theme to match your color scheme....