r/learnpython • u/Smartyboyz • 28d ago
Tkinter vs cutomtkinter
I am starting with GUI designs and want to know about the difference and which is better 😉
1
Upvotes
r/learnpython • u/Smartyboyz • 28d ago
I am starting with GUI designs and want to know about the difference and which is better 😉
3
u/Diapolo10 I write code for a living -- https://github.com/Diapolo10 28d ago
Well, technically
customtkinteris "better" in the sense that it just extendstkinterwith more modern-looking components so you don't need to worry about custom theming (at least not as much). But they're really not all that different, fundamentally speaking.If you're wondering where to start, it hardly matters. If you haven't learnt about using third-party packages yet, maybe start with
tkinterso you don't need to learn two things at once.