What is an easier method of moving widgets on tkinter?

57 Views Asked by At

The methods of moving widgets around on a canvas seem time consuming. Is there an easier way to arrange wigets (ie arranging them through some additional app that uses absolute geometry and allows you to move stretch etc widget which just changes the co-ordinates of its value)

1

There are 1 best solutions below

0
On

Have you looked into the .grid(row = <>, column = <>, rowspan = <>, columnspan = <>) method that can be called on every tkinter widget?