Use Figma to create a drag and drop User Interface for Python using TkInter PART 2

preview_player
Показать описание
There is also a discussion on how to modularise your code, how to separate the GUI design from the actual functionality of the program
Рекомендации по теме
Комментарии
Автор

me gustan mucho estos vídeos me están funcionando muy bien me gustaría que explicarás más con Visual Studio y está herramienta

TheDrifle
Автор

Hey have you been able to link two of these figma exports together? Tkdesigner only seems to want to export one Figma frame at a time and I’m trying to make the button from one GUI page open the other GUI page

BTCee
Автор

Using stuff like propitiatory freemium code will certainly lead to bad spaghetti code, Either you write the full code and use Free and opensource software like a boss or you'll be stuck creating calculators like this. Also ask yourself does your project really need a gui? if so can it be done webbased? what other options do i have? The amount of code needed to just add 2 numbers this way is allready bloating up my machine looking at the video.

x = input("What is the number you want to add the second number to? ")
y = input("What is the second number you want to add? ")

math = int(x)+int(y)
print(math)


does the same in 4 lines of text and no bloat gui just in the command line. 4 lines AINT NO SPAGHETTI code

tuurblaffe
welcome to shbcf.ru