Here, I need to place the button in homeFrame. But I can't place the button there. What's the issue? Please resolve it. Here is the code.
from tkinter import *
root = Tk()
root.state('zoomed')
root.configure(bg='#498240')
screen_width = root.winfo_screenwidth()
screen_height = root.winfo_screenheight()
headFrame = Frame(root,width=screen_width,height=120,bd=10,bg='#498240',relief=RIDGE).grid(row=0,column=0)
headlable = Label(headFrame,text='Super Market',fg='white',bg='#498240',font=('times new roman',55,'bold')).grid(row=0,column=0)
homeFrame = Frame(root,width=screen_width,height=screen_height-200,bd=10,bg='#498240',relief=RIDGE).grid(row=1,column=0)
homeBtn = Button(homeFrame,text='Customer Management').grid(row=0,column=0)
root.mainloop()
Here I have mentioned the location of the button please help me to place the button there.