I'm relatively new to coding in general and I'm wondering if there is a better way to position my GUI components. I'm using rows and columns, but it can be awkward as I have to use padx
and pady
to make my GUI look nice, is there an easier method of positioning these?
Example Code:
PageLabel=Label(Login,
text="Login",
font=('Arial Black',40),
fg='white,
bg='lightblue').grid(row=1,column=1,columnspan=4,padx=100)