I code in Python and I use tkinter quite a lot to create GUIs for my applications. I prefer to make my GUIs look round and modern rather than sharp cornered boxes. For buttons and labels I tend to use PhotoImage to use self-made images that provide a cleaner look.
My GUIs look really modern now but the only issue is that I have Entry widgets for users to enter data. They still look really boxy and rectangular, which makes them stand out from the rest of the modern look. My question is, that is there a method in tkinter like PhotoImage, that makes the Entry Widget look better?
This is the current way I make entry widgets:
from tkinter import *
root = Tk()
e = Entry(root)
e.pack()
root.mainloop()
When I say make entries look nicer I mean:
- Smoother Corners
- Rounded Edges
- Just a less boxy look
I hope someone can help me.
Thanks