- I am trying to keep the title in centre when resizing the window
- I tried to change the label and to import * modules from tkinter for possible solution
- Any help or hint is highly appreciated
- following is the attached code:
import tkinter as t
root=t.Tk()
root.geometry("1000x500")
'''Login/Register page '''
root.title("LOGIN PAGE")
bankLabel=t.Label(text="Bank of DINAGOD")
bankLabel.pack(fill='x')
bankLabel.place(x=475)
root.mainloop()