well i need to set a background image for my program but i knew a few minutes ago that grid and pack can't be used together so ii am asking if there is any other way for me to set a background image and not loosing my buttons and labels Here is a part of my program need help please:
from tkinter import *
from tkinter import ttk
from PIL import ImageTk,Image
root=Tk()
root.title('COVID-19')
ttk.Button(text='About').grid()
myimage=ImageTk.PhotoImage(Image.open('... .jpg'))
mylabel=Label(image=myimage)
mylabel.pack()
root.mainloop()