I have been working on a note taking program for myself and it is going well however I have had a lot of problems with getting all my widgets placed where I want them using the .pack()
or .grid()
options.
After looking around I found that I could use the .place()
option instead. Before I decided to use .place()
I found countless forum post saying "don't use .place()
!".
I was at a stand still with my other options so I decided to give .place()
a try. It turns out .place()
is exactly what I needed to fix my layout issues and I just don't understand why everyone is hating on .place()
so much.
Is there something inherently wrong with .place()
? Or do people just prefer to use .pack()
and .grid()
for some practical reason other than ease of use?