FaheemM1020

Results 4 comments of FaheemM1020

Do you mean this: ``` import customtkinter root = customtkinter.CTk() tetbox = customtkinter.CTkTextbox(root,font=("roboto",30)) tetbox.insert(index=customtkinter.END,text="Hello, World!") tetbox.pack(padx=10,pady=10,expand=True,fill='both') root.mainloop() ```

There is a padx argument for text box so there should be some way to do it

Do like this : CTkButton(master,text=' ') # Put a space between quotes Here's You Fixed Code: ``` app = ctk.CTk() app.geometry(str(1280) + 'x' + str(720) + '+0+0') app.rowconfigure(0, weight=1, uniform='u')...

Have a look at this: https://pypi.org/project/tklinenums/