Tkinter-Designer
Tkinter-Designer copied to clipboard
How do I make my program go fullscreen and is tthere anything similar like relheight,rel width, relx, rely?
It copies the dimensions of the figma project but I want it to resize itself accordingly to the size of the screen. And I am not able to find the things I listed above, so is there anything similar to do what I want?
the project doesn't support this future as I remember, you have to do it manually.
How would u do it manually?
This worked for me.
window = tk.Tk()
window.attributes('-fullscreen', True)
Thanks @ernadosmic