I\'m programming a little game with tkinter and briefly, I\'m stuck.
I have a kind od starting menu, in which are two buttons and one label.
If I just create
There are 2 solutions for your problem:
mw.geometry('500x500')
OR
back.place(x = 0, y = 0, relwidth = 1, relheight = 1)
*The second option should be used in place of back.pack()
back.pack()