I’ve always thought there’s so much low hanging fruit in making simple interfaces easy to make. We’ve lost so much ground since vb6.
Youll be happy to hear Delphi is still alive and well, thanks to Embarcadero
Tkinter Designer: Quickly Turn Figma Design to Python Tkinter GUI
21–30 of 38 posts
Re: Tkinter Designer: Quickly Turn Figma Design to Python Tkinter GUI
#22I’ve always thought there’s so much low hanging fruit in making simple interfaces easy to make. We’ve lost so much ground since vb6.
https://www.lazarus-ide.org/
Re: Tkinter Designer: Quickly Turn Figma Design to Python Tkinter GUI
#23I’ve always thought there’s so much low hanging fruit in making simple interfaces easy to make. We’ve lost so much ground since vb6.
Re: Tkinter Designer: Quickly Turn Figma Design to Python Tkinter GUI
#24I’ve always thought there’s so much low hanging fruit in making simple interfaces easy to make. We’ve lost so much ground since vb6.
Re: Tkinter Designer: Quickly Turn Figma Design to Python Tkinter GUI
#25I find chatgpt good for this kind of simple GUI design tasks, you can just tell it to create a simple GUI incl drop downs etc. It won’t be perfect but removes a lot of the tedious work.
I have used chatgpt a bit for coding tasks, and it is alright. Kind of like getting a not that smart student to do something, and repeatedly prodding them to do it right.
Re: Tkinter Designer: Quickly Turn Figma Design to Python Tkinter GUI
#26Earlier quoted context omitted.
Do you have to pay to license QML? Qt looks nice but license fees are pretty expensive for small shops. Could use the GPL version but I’m just afraid of becoming dependent on a tool that will keep the most interesting features only available for the commercial version.
Not at all! Qt comes with an LGPL version that you just must 1. link it dynamically and 2. If you change Qt's source code you need to publish the changes. (Not legal advice). Most of what you'll need will be under the LGPL version. You can use the commercial version by paying and not publishing your source or via the GPL license and publish your full source code and everything else GPL requires. I cannot recommend it…
Alright, you convinced me to give it a shot!
Re: Tkinter Designer: Quickly Turn Figma Design to Python Tkinter GUI
#27Pretty impressive. I've never very much liked how TKinter looks out of the box and i didn't know it's capable custom UI visuals as in the examples. If tkinter looked like the OS native UI it would be optimal, but in my experience it mostly doesn't. Will be following this project for my future GUI needs in Python. Nice work!
Tkinter looks native on platforms that have native GUIs (Windows, macOS). On Unix you can use any of the numerous platform-independent (non-native) skins for Ttk: - https://ttkbootstrap.readthedocs.io/en/latest/#sample-themes - https://wiki.tcl-lang.org/page/List+of+ttk+Themes#60ca3eb80e... - https://ttkthemes.readthedocs.io/en/latest/themes.html The main issue with Tk/Ttk is mostly documentation and of course that i…
That and accessibility.
Re: Tkinter Designer: Quickly Turn Figma Design to Python Tkinter GUI
#28Re: Tkinter Designer: Quickly Turn Figma Design to Python Tkinter GUI
#29The examples look horrible imho